From 524c89c8c5ea8be6d989c855095cf4c58097e654 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Wed, 25 Jan 2017 18:42:10 +0100 Subject: First cut of ICE-6920 - Remove try/catch block around communicator destroy --- python/test/Ice/binding/Client.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'python/test/Ice/binding/Client.py') 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) -- cgit v1.2.3