From: Jacob Alexander Date: Tue, 13 Oct 2015 05:59:12 +0000 (-0700) Subject: Another error message cleanup X-Git-Url: https://git.donarmstrong.com/?p=kiibohd-kll.git;a=commitdiff_plain;h=274dd6c17b32b21803308c8f8d4926b74755582a Another error message cleanup --- diff --git a/kll.py b/kll.py index cae70f8..b03c67d 100755 --- a/kll.py +++ b/kll.py @@ -685,14 +685,14 @@ def processKLLFile( filename ): data = file.read() try: tokenSequence = tokenize( data ) - except LexerError as e: - print ( "{0} Tokenization error in '{1}' - {2}".format( ERROR, filename, e ) ) + except LexerError as err: + print ( "{0} Tokenization error in '{1}' - {2}".format( ERROR, filename, err ) ) sys.exit( 1 ) #print ( pformat( tokenSequence ) ) # Display tokenization try: tree = parse( tokenSequence ) - except NoParseError as e: - print ( "{0} Parsing error in '{1}' - {2}".format( ERROR, filename, e ) ) + except (NoParseError, KeyError) as err: + print ( "{0} Parsing error in '{1}' - {2}".format( ERROR, filename, err ) ) sys.exit( 1 )