summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-07-21 13:15:15 +0100
committerRichard van der Hoff <richard@matrix.org>2016-07-21 13:15:15 +0100
commit1c3c202b969d6a7e5e4af2b2dca370f053b92c9f (patch)
tree5c1816575db12bba83ea73687c78dccab02202b7 /synapse/handlers
parentImplement GET /device/{deviceId} (diff)
downloadsynapse-1c3c202b969d6a7e5e4af2b2dca370f053b92c9f.tar.xz
Fix PEP8 errors
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/device.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/device.py b/synapse/handlers/device.py

index 3c88be0679..110f5fbb5c 100644 --- a/synapse/handlers/device.py +++ b/synapse/handlers/device.py
@@ -109,7 +109,7 @@ class DeviceHandler(BaseHandler): """ try: device = yield self.store.get_device(user_id, device_id) - except errors.StoreError, e: + except errors.StoreError: raise errors.NotFoundError ips = yield self.store.get_last_client_ip_by_device( devices=((user_id, device_id),)