summaryrefslogtreecommitdiff
path: root/python/test/Ice/binding/Client.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-01-25 18:42:10 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-01-25 18:42:10 +0100
commit524c89c8c5ea8be6d989c855095cf4c58097e654 (patch)
tree697a384847d23d3d84345b84339f42d63d45687a /python/test/Ice/binding/Client.py
parentFixed ICE-7281 - skipEmptyEncapsulation now checks for the encoding version (diff)
downloadice-524c89c8c5ea8be6d989c855095cf4c58097e654.tar.bz2
ice-524c89c8c5ea8be6d989c855095cf4c58097e654.tar.xz
ice-524c89c8c5ea8be6d989c855095cf4c58097e654.zip
First cut of ICE-6920 - Remove try/catch block around communicator destroy
Diffstat (limited to 'python/test/Ice/binding/Client.py')
-rwxr-xr-xpython/test/Ice/binding/Client.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/python/test/Ice/binding/Client.py b/python/test/Ice/binding/Client.py
index 4f30e65f8e9..c702a3752da 100755
--- a/python/test/Ice/binding/Client.py
+++ b/python/test/Ice/binding/Client.py
@@ -27,10 +27,6 @@ except:
status = False
if communicator:
- try:
- communicator.destroy()
- except:
- traceback.print_exc()
- status = False
+ communicator.destroy()
sys.exit(not status)