diff options
author | Erik Johnston <erik@matrix.org> | 2015-01-22 15:57:08 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-01-22 15:57:08 +0000 |
commit | 73dd81ca62885110f7fe0e51e7f4e0183b495d17 (patch) | |
tree | b5150ba21bff3a464971c1338182c0cc6654cc2a /synapse/state.py | |
parent | Remove unused function. Add comment. (diff) | |
download | synapse-73dd81ca62885110f7fe0e51e7f4e0183b495d17.tar.xz |
fix pyflakes
Diffstat (limited to 'synapse/state.py')
-rw-r--r-- | synapse/state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state.py b/synapse/state.py index 5b622ad3b1..d9fdfb34be 100644 --- a/synapse/state.py +++ b/synapse/state.py @@ -295,7 +295,7 @@ class StateHandler(object): # get around circular deps. self.hs.get_auth().check(event, auth_events) return event - except AuthError as e: + except AuthError: pass # Oh dear. |