diff options
Diffstat (limited to 'wintest/wintest.py')
-rw-r--r-- | wintest/wintest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wintest/wintest.py b/wintest/wintest.py index 910297ed4b..c9bd87554e 100644 --- a/wintest/wintest.py +++ b/wintest/wintest.py @@ -68,7 +68,8 @@ class wintest(): def set_vms(self, vms): '''set a list of VMs to test''' - self.vms = vms.split(',') + if vms is not None: + self.vms = vms.split(',') def skip(self, step): '''return True if we should skip a step''' |