1
0
mirror of https://github.com/docker/compose.git synced 2025-04-08 17:05:13 +02:00

Fix method name in start()

This commit is contained in:
Aanand Prasad 2013-12-19 12:39:23 +00:00
parent ae0fa0c447
commit bac37a19e3

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