diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-09-08 16:26:55 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-09-08 16:26:55 +0000 |
commit | dca3056b1e44b0dd5b106f1df86ab8cd5a334b1a (patch) | |
tree | a04160d5f64fd555401f533d4ef7e8658518fa19 /py/python/Ice.py | |
parent | Fixed ICE-5667: Added Communicator::createAdmin in C++, Java, C# and Python (diff) | |
download | ice-dca3056b1e44b0dd5b106f1df86ab8cd5a334b1a.tar.bz2 ice-dca3056b1e44b0dd5b106f1df86ab8cd5a334b1a.tar.xz ice-dca3056b1e44b0dd5b106f1df86ab8cd5a334b1a.zip |
Added missing implementation for ObjectAdapter::getLocator in Python
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 33234632965..60ff93258ab 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -763,6 +763,9 @@ class ObjectAdapterI(ObjectAdapter): def setLocator(self, loc): self._impl.setLocator(loc) + def getLocator(self): + return self._impl.getLocator() + def refreshPublishedEndpoints(self): self._impl.refreshPublishedEndpoints() |