fix "local variable 'e' is assigned to but never used"

This commit is contained in:
Hans-Christoph Steiner 2018-05-25 12:32:34 +02:00
parent 14127bf418
commit fb02073cab
3 changed files with 3 additions and 3 deletions

2
fdroid
View file

@ -156,7 +156,7 @@ def main():
# str(e) often doesn't contain a reason, so just show the backtrace
except Exception as e:
logging.critical(_("Unknown exception found!"))
raise
raise e
sys.exit(0)