helpers: fix "undefined name 'e'" in exception handler

This commit is contained in:
Thomas Waldmann 2016-06-19 14:55:57 +02:00
parent 745007bd12
commit 278cf0b9ad
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ def format_line(format, data):
except (KeyError, ValueError) as e: except (KeyError, ValueError) as e:
# this should catch format errors # this should catch format errors
print('Error in lineformat: "{}" - reason "{}"'.format(format, str(e))) print('Error in lineformat: "{}" - reason "{}"'.format(format, str(e)))
except: except Exception as e:
# something unexpected, print error and raise exception # something unexpected, print error and raise exception
print('Error in lineformat: "{}" - reason "{}"'.format(format, str(e))) print('Error in lineformat: "{}" - reason "{}"'.format(format, str(e)))
raise raise