summaryrefslogtreecommitdiff
path: root/py/demo/IceGrid/simple/Server.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-01-12 21:35:26 +0000
committerMark Spruiell <mes@zeroc.com>2006-01-12 21:35:26 +0000
commit04d660e3fd9546e59d8e8214edac44ba6966503e (patch)
tree4d5930704eabed229fddb9c4fe986a2606bc4c33 /py/demo/IceGrid/simple/Server.py
parentreturn remaining args to caller (diff)
downloadice-04d660e3fd9546e59d8e8214edac44ba6966503e.tar.bz2
ice-04d660e3fd9546e59d8e8214edac44ba6966503e.tar.xz
ice-04d660e3fd9546e59d8e8214edac44ba6966503e.zip
changing exit status
Diffstat (limited to 'py/demo/IceGrid/simple/Server.py')
-rw-r--r--py/demo/IceGrid/simple/Server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/demo/IceGrid/simple/Server.py b/py/demo/IceGrid/simple/Server.py
index 1b0751eeec2..61a44f655b3 100644
--- a/py/demo/IceGrid/simple/Server.py
+++ b/py/demo/IceGrid/simple/Server.py
@@ -32,7 +32,7 @@ class Server(Ice.Application):
adapter.add(HelloI(properties.getProperty("Ice.ServerId")), id)
adapter.activate()
self.communicator().waitForShutdown()
- return True
+ return 0
app = Server()
sys.exit(app.main(sys.argv))