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 /isys/isys.py | |
parent | 439ca96218257524676f84b22fcfa4b65f95b6d4 (diff) | |
download | anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.tar.gz anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.tar.xz anaconda-75541c9a8dc074fab459ee97eca073ab31be92b4.zip |
fixed caseness of getopt in isys
Diffstat (limited to 'isys/isys.py')
-rw-r--r-- | isys/isys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py index e0c560730..239297e3b 100644 --- a/isys/isys.py +++ b/isys/isys.py @@ -131,5 +131,5 @@ def inet_calcNS (net): def parseArgv(str): return _isys.poptParseArgv(str) -def getOpt(*args): +def getopt(*args): return apply(_isys.getopt, args) |