summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-08 23:07:23 +0000
committerMatt Wilson <msw@redhat.com>1999-09-08 23:07:23 +0000
commit35040727835c45076eec3b227c608bcd0b92f724 (patch)
treedd5875bca8f1a48d9a110c7684e88397ede6b6fc /kickstart.py
parent711ed73c034547fe8571246bd584108aa18076b0 (diff)
downloadanaconda-35040727835c45076eec3b227c608bcd0b92f724.tar.gz
anaconda-35040727835c45076eec3b227c608bcd0b92f724.tar.xz
anaconda-35040727835c45076eec3b227c608bcd0b92f724.zip
1) changed None to "" in network setup
2) removed extraneous print
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py8
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)