diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-04-19 13:56:01 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-04-19 13:56:01 +0000 |
commit | 47d89deb6b10455b6685585b707b8ba1fefea922 (patch) | |
tree | 2d4f477ff3307675b7b6bb74fa85f4b0a2920445 /py/demo/Ice/value/Client.py | |
parent | Fixed bogus assert (bug 953) (diff) | |
download | ice-47d89deb6b10455b6685585b707b8ba1fefea922.tar.bz2 ice-47d89deb6b10455b6685585b707b8ba1fefea922.tar.xz ice-47d89deb6b10455b6685585b707b8ba1fefea922.zip |
separating client/server configuration; removing client/server properties
for IceSSL
Diffstat (limited to 'py/demo/Ice/value/Client.py')
-rw-r--r-- | py/demo/Ice/value/Client.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/py/demo/Ice/value/Client.py b/py/demo/Ice/value/Client.py index bcf86be4c40..e9ee738dfa8 100644 --- a/py/demo/Ice/value/Client.py +++ b/py/demo/Ice/value/Client.py @@ -153,7 +153,9 @@ class Client(Ice.Application): print '\n'\ "That's it for this demo. Have fun with Ice!" + initial.shutdown() + return True app = Client() -sys.exit(app.main(sys.argv, "config")) +sys.exit(app.main(sys.argv, "config.client")) |