This commit is contained in:
Mauricio Baeza 2019-09-16 19:44:24 -05:00
parent fed3f6a020
commit ed3f312159
4 changed files with 1 additions and 4 deletions

View File

@ -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]

Binary file not shown.

View File

@ -27,7 +27,6 @@ except Exception as e:
class Controllers(object):
@app.catch_exception
def __init__(self, dlg):
self.d = dlg

View File

@ -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