summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2007-04-02 23:06:10 +0000
committerMark Spruiell <mes@zeroc.com>2007-04-02 23:06:10 +0000
commitdcf7329bb51215615c9f1954e6af5734da6f36c9 (patch)
tree89101e2b0c8b3c2f30739984d742555d760f0751 /py/python/Ice.py
parentRemove local interface support (diff)
downloadice-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.py4
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)