diff options
author | Mark Spruiell <mes@zeroc.com> | 2010-05-06 09:00:24 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2010-05-06 09:00:24 -0700 |
commit | dc59208b501e458a872492de809bfebe2b0fc3d5 (patch) | |
tree | ec67255e6509fe58282845b5c8fc95b648e4f1e2 /py/python | |
parent | bug 4732 - bug in Glacier2.SessionFactoryHelper.getPort (diff) | |
download | ice-dc59208b501e458a872492de809bfebe2b0fc3d5.tar.bz2 ice-dc59208b501e458a872492de809bfebe2b0fc3d5.tar.xz ice-dc59208b501e458a872492de809bfebe2b0fc3d5.zip |
bug 4736 - exit status bug in Python Ice.Application
Diffstat (limited to 'py/python')
-rw-r--r-- | py/python/Ice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index aeead0e5bcc..871e6b6c929 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -1028,7 +1028,7 @@ value is an integer representing the exit status. return status def doMain(self, args, initData): - self.run(args) + return self.run(args) def run(self, args): '''This method must be overridden in a subclass. The base |