From: Tony Mack Date: Tue, 18 Aug 2009 17:44:26 +0000 (+0000) Subject: dont print the exceptions X-Git-Tag: PLCAPI-4.3-23~11 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=da862bde0e3ae024dd87d8e8e47c7ce88922fbfd dont print the exceptions --- diff --git a/PLC/SFA.py b/PLC/SFA.py index 333ee3d..cef1ea4 100644 --- a/PLC/SFA.py +++ b/PLC/SFA.py @@ -14,7 +14,8 @@ def wrap_exception(method): try: return method(*args, **kwds) except: - traceback.print_exc() + pass + #traceback.print_exc() return wrap def required_packages_imported(method):