1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-26 00:38:10 +00:00

Fix a crash when docker start command is None

Ref #550
This commit is contained in:
Julien Duponchelle 2016-05-31 16:32:12 +02:00
parent 009ffcb4ef
commit 6f7b06e66f
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -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