summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-08 01:27:48 +0000
committerMatt Wilson <msw@redhat.com>1999-09-08 01:27:48 +0000
commit75541c9a8dc074fab459ee97eca073ab31be92b4 (patch)
tree70a46efd98b7153d78f2e5a7474fc1696b8e6aec /anaconda
parent439ca96218257524676f84b22fcfa4b65f95b6d4 (diff)
downloadanaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.tar.gz
anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.tar.xz
anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.zip
fixed caseness of getopt in isys
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda4
1 files changed, 1 insertions, 3 deletions
diff --git a/anaconda b/anaconda
index ab1f1727e..bae9b64cf 100755
--- a/anaconda
+++ b/anaconda
@@ -16,13 +16,11 @@ gettext.bindtextdomain("anaconda", "/usr/share/locale")
gettext.textdomain("anaconda")
_ = gettext.gettext
-(args, extra) = isys.getOpt(sys.argv[1:], 'GTtdr:fm:',
+(args, extra) = isys.getopt(sys.argv[1:], 'GTtdr:fm:',
[ 'gui', 'text', 'test', 'debug', 'method=', 'rootpath=',
'testpath=', 'mountfs', 'traceonly', 'kickstart=',
'expert'])
-print "got args", args
-
# remove the arguments - gnome_init doesn't understand them
for arg in sys.argv[1:]:
sys.argv.remove (arg)