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/timeout/Server.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'python/test/Ice/timeout/Server.py') diff --git a/python/test/Ice/timeout/Server.py b/python/test/Ice/timeout/Server.py index 1a1b52014cc..4db8d04b78f 100755 --- a/python/test/Ice/timeout/Server.py +++ b/python/test/Ice/timeout/Server.py @@ -72,10 +72,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