_rlcompleter: re-raise exception with plain 'raise', not 'raise e'

This commit is contained in:
Brian Warner 2017-09-12 16:39:05 -07:00
parent 22bc382543
commit 25afce41fb

View File

@ -40,7 +40,7 @@ class CodeInputter(object):
# makes debugging challenging
print("completer exception: %s" % e)
traceback.print_exc()
raise e
raise
def _wrapped_completer(self, text, state):
self.used_completion = True