diff options
author | Jose <jose@zeroc.com> | 2017-06-05 15:51:56 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-06-05 15:51:56 +0200 |
commit | 4fb85dc40fc1cb4be6006377014e2214a34d9d4a (patch) | |
tree | 50318d895af789a819010ab23a93097b60e9d289 /python/test | |
parent | Fix typo (diff) | |
download | ice-4fb85dc40fc1cb4be6006377014e2214a34d9d4a.tar.bz2 ice-4fb85dc40fc1cb4be6006377014e2214a34d9d4a.tar.xz ice-4fb85dc40fc1cb4be6006377014e2214a34d9d4a.zip |
remove debug output
Diffstat (limited to 'python/test')
-rw-r--r-- | python/test/Glacier2/application/Client.py | 2 | ||||
-rw-r--r-- | python/test/Glacier2/application/Server.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/python/test/Glacier2/application/Client.py b/python/test/Glacier2/application/Client.py index 70547571041..1608d668ce7 100644 --- a/python/test/Glacier2/application/Client.py +++ b/python/test/Glacier2/application/Client.py @@ -68,7 +68,7 @@ class Application(Glacier2.Application): print("ok") sys.stdout.write("testing server shutdown... ") - callback.shutdown(); + callback.shutdown() print("ok") return 0 diff --git a/python/test/Glacier2/application/Server.py b/python/test/Glacier2/application/Server.py index bda0c01a7d4..b958fa78b4d 100644 --- a/python/test/Glacier2/application/Server.py +++ b/python/test/Glacier2/application/Server.py @@ -23,7 +23,6 @@ class CallbackI(Test.Callback): class Server(Ice.Application): def run(self, args): - print(args) self.communicator().getProperties().setProperty("DeactivatedAdapter.Endpoints", "default -p 12011") self.communicator().createObjectAdapter("DeactivatedAdapter") |