summaryrefslogtreecommitdiff
path: root/py/demo/Glacier2/callback/Server.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-03-01 13:12:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-03-01 13:12:23 +0000
commit6799cc28d8c40559cfe84476ea7a89b25baaae39 (patch)
tree695b40a884ca8af0bb0b076e42d174574a89b1fa /py/demo/Glacier2/callback/Server.py
parentFixed warning/error messages to be on a single line (diff)
downloadice-6799cc28d8c40559cfe84476ea7a89b25baaae39.tar.bz2
ice-6799cc28d8c40559cfe84476ea7a89b25baaae39.tar.xz
ice-6799cc28d8c40559cfe84476ea7a89b25baaae39.zip
Bug 1894 - fix return code
Diffstat (limited to 'py/demo/Glacier2/callback/Server.py')
-rw-r--r--py/demo/Glacier2/callback/Server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/demo/Glacier2/callback/Server.py b/py/demo/Glacier2/callback/Server.py
index 61f4f81dc2c..9e0a95b1407 100644
--- a/py/demo/Glacier2/callback/Server.py
+++ b/py/demo/Glacier2/callback/Server.py
@@ -31,7 +31,7 @@ class Server(Ice.Application):
adapter.add(CallbackI(), self.communicator().stringToIdentity("callback"))
adapter.activate()
self.communicator().waitForShutdown()
- return True
+ return 0
app = Server()
sys.exit(app.main(sys.argv, "config.server"))