Fix method name in start()

This commit is contained in:
Aanand Prasad 2013-12-19 12:39:23 +00:00
parent ae0fa0c447
commit bac37a19e3
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class TopLevelCommand(Command):
if len(s.containers()) == 0: if len(s.containers()) == 0:
unstarted.append((s, s.create_container())) unstarted.append((s, s.create_container()))
else: else:
running += s.get_containers(all=False) running += s.containers(all=False)
log_printer = LogPrinter(running + [c for (s, c) in unstarted]) log_printer = LogPrinter(running + [c for (s, c) in unstarted])