diff --git a/CHANGELOG b/CHANGELOG index b63787f..fdd2314 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v 0.2.1 [15-sep-2019] +v 0.2.1 [16-sep-2019] - Fix #1 v 0.2.0 [14-sep-2019] diff --git a/files/ZAZBarCode_v0.2.1.oxt b/files/ZAZBarCode_v0.2.1.oxt index 9f3ed56..5e30629 100644 Binary files a/files/ZAZBarCode_v0.2.1.oxt and b/files/ZAZBarCode_v0.2.1.oxt differ diff --git a/source/ZAZBarCode.py b/source/ZAZBarCode.py index 0b0557e..1caf0c4 100644 --- a/source/ZAZBarCode.py +++ b/source/ZAZBarCode.py @@ -27,7 +27,6 @@ except Exception as e: class Controllers(object): - @app.catch_exception def __init__(self, dlg): self.d = dlg diff --git a/source/pythonpath/easymacro.py b/source/pythonpath/easymacro.py index a5bb2ea..15ea311 100644 --- a/source/pythonpath/easymacro.py +++ b/source/pythonpath/easymacro.py @@ -143,8 +143,6 @@ def catch_exception(f): try: return f(*args, **kwargs) except Exception as e: - if IS_WIN: - debug(str(e)) log.error(f.__name__, exc_info=True) return func