Fix a crash when docker start command is None

Ref #550
pull/565/head
Julien Duponchelle 8 years ago
parent 009ffcb4ef
commit 6f7b06e66f
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -129,8 +129,9 @@ class DockerVM(BaseVM):
@start_command.setter
def start_command(self, command):
command = command.strip()
if len(command) == 0:
if command:
command = command.strip()
if command is None or len(command) == 0:
self._start_command = None
else:
self._start_command = command

Loading…
Cancel
Save