diff options
Diffstat (limited to 'py/demo/IceStorm/clock/Publisher.py')
-rw-r--r-- | py/demo/IceStorm/clock/Publisher.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/py/demo/IceStorm/clock/Publisher.py b/py/demo/IceStorm/clock/Publisher.py index c89217a8651..131476c52e2 100644 --- a/py/demo/IceStorm/clock/Publisher.py +++ b/py/demo/IceStorm/clock/Publisher.py @@ -45,8 +45,7 @@ class Publisher(Ice.Application): if len(args) > 0: topicName = args[0] - manager = IceStorm.TopicManagerPrx.checkedCast(\ - self.communicator().propertyToProxy('IceStorm.TopicManager.Proxy')) + manager = IceStorm.TopicManagerPrx.checkedCast(self.communicator().propertyToProxy('TopicManager.Proxy')) if not manager: print args[0] + ": invalid proxy" return 1 |