diff options
author | Mark Spruiell <mes@zeroc.com> | 2007-06-25 08:06:30 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2007-06-25 08:06:30 -0700 |
commit | 0c85a37175e9658a8553e939e107b3269e73e937 (patch) | |
tree | 40f1af2a79a737d913da3d67fb5c4e6b26d7e3ac /py/python/Ice.py | |
parent | Changed setting Application signal handling policy to use an enum (diff) | |
download | ice-0c85a37175e9658a8553e939e107b3269e73e937.tar.bz2 ice-0c85a37175e9658a8553e939e107b3269e73e937.tar.xz ice-0c85a37175e9658a8553e939e107b3269e73e937.zip |
bug 2265
Diffstat (limited to 'py/python/Ice.py')
-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 c1ad0bb6e0b..a0b55ee41dc 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -212,7 +212,7 @@ class CommunicatorI(Communicator): pass def isShutdown(self): - self._impl.isShutdown() + return self._impl.isShutdown() def stringToProxy(self, str): return self._impl.stringToProxy(str) |