mirror of https://github.com/docker/compose.git
Fix method name in start()
This commit is contained in:
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])
|
||||
|
||||
|
|
Loading…
Reference in New Issue