dont print the exceptions
authorTony Mack <tmack@cs.princeton.edu>
Tue, 18 Aug 2009 17:44:26 +0000 (17:44 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Tue, 18 Aug 2009 17:44:26 +0000 (17:44 +0000)
PLC/SFA.py

index 333ee3d..cef1ea4 100644 (file)
@@ -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):