diff options
-rw-r--r-- | kickstart.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/kickstart.py b/kickstart.py index dff16f4c2..8e427aa67 100644 --- a/kickstart.py +++ b/kickstart.py @@ -101,9 +101,9 @@ class Kickstart(InstallClass): [ 'bootproto', 'ip', 'netmask', 'gateway', 'nameserver' ]) bootProto = "dhcp" ip = None - netmask = None - gateway = None - nameserver = None + netmask = "" + gateway = "" + nameserver = "" for n in args: (str, arg) = n if str == "--bootproto": @@ -178,8 +178,6 @@ class Kickstart(InstallClass): if extra: mouseType = extra[0] - print "mouseType is", mouseType - if mouseType != "none": self.setMouseType(mouseToMouse[mouseType], device, emulThree) |