aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-01-08 13:39:19 +0100
committerSimon Warta <[email protected]>2017-01-09 19:03:00 +0100
commitd5452281a441c57624b2973fee2c7c14b83ed0bc (patch)
tree133d393d9da96c98f9ea50b61406294077a3838a
parenta27c328fba6701b9d7b34b385ef07bf9d99dc665 (diff)
Add super() call to Exception
-rwxr-xr-xconfigure.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.py b/configure.py
index 7c32383db..2da5d4eac 100755
--- a/configure.py
+++ b/configure.py
@@ -523,6 +523,7 @@ def lex_me_harder(infofile, to_obj, allowed_groups, name_val_pairs):
class LexerError(Exception):
def __init__(self, msg, line):
+ super(LexerError, self).__init__(msg)
self.msg = msg
self.line = line