From da862bde0e3ae024dd87d8e8e47c7ce88922fbfd Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 18 Aug 2009 17:44:26 +0000 Subject: [PATCH] dont print the exceptions --- PLC/SFA.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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): -- 2.43.0