diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-08 01:27:48 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-08 01:27:48 +0000 |
commit | 75541c9a8dc074fab459ee97eca073ab31be92b4 (patch) | |
tree | 70a46efd98b7153d78f2e5a7474fc1696b8e6aec /anaconda | |
parent | 439ca96218257524676f84b22fcfa4b65f95b6d4 (diff) | |
download | anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.tar.gz anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.tar.xz anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.zip |
fixed caseness of getopt in isys
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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) |