diff options
author | Mark Spruiell <mes@zeroc.com> | 2007-04-02 23:06:10 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2007-04-02 23:06:10 +0000 |
commit | dcf7329bb51215615c9f1954e6af5734da6f36c9 (patch) | |
tree | 89101e2b0c8b3c2f30739984d742555d760f0751 /py/python/Ice.py | |
parent | Remove local interface support (diff) | |
download | ice-dcf7329bb51215615c9f1954e6af5734da6f36c9.tar.bz2 ice-dcf7329bb51215615c9f1954e6af5734da6f36c9.tar.xz ice-dcf7329bb51215615c9f1954e6af5734da6f36c9.zip |
bug fix for parsing command-line options
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 62895193232..2ceb641f479 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -470,10 +470,10 @@ class PropertiesI(Properties): return self._impl.getCommandLineOptions() def parseCommandLineOptions(self, prefix, options): - self._impl.parseCommandLineOptions(prefix, options) + return self._impl.parseCommandLineOptions(prefix, options) def parseIceCommandLineOptions(self, options): - self._impl.parseIceCommandLineOptions(options) + return self._impl.parseIceCommandLineOptions(options) def load(self, file): self._impl.load(file) |