[d] Fix bug on restart
This commit is contained in:
parent
9c5a8f4379
commit
40b853d71a
1 changed files with 1 additions and 1 deletions
2
dodo.py
2
dodo.py
|
@ -122,7 +122,7 @@ def restart(services):
|
|||
print('Valid services are: ' + ', '.join(valid), file=sys.stderr)
|
||||
return False
|
||||
for service in services:
|
||||
subprocess.check_call((COMPOSE + 'restart %s' % service).split())
|
||||
subprocess.check_call((COMPOSE + ' restart %s' % service).split())
|
||||
return True
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue