Remove an assignment to an unused name.

This commit is contained in:
Ben Finney 2022-12-19 09:50:05 +11:00
parent 7118641d78
commit 6a4de62467

View file

@ -172,7 +172,7 @@ while True:
ejab_request = ejabberd_in().split(':', 3)
except EOFError:
break
except Exception as e:
except Exception:
logging.exception("Exception occured while reading stdin")
raise