diff options
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) |