summary refs log tree commit diff
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
parentImplement GET /device/{deviceId} (diff)
downloadsynapse-1c3c202b969d6a7e5e4af2b2dca370f053b92c9f.tar.xz
Fix PEP8 errors
Diffstat (limited to '')
-rw-r--r--synapse/handlers/device.py2
-rw-r--r--tests/handlers/test_device.py1
2 files changed, 2 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),) diff --git a/tests/handlers/test_device.py b/tests/handlers/test_device.py
index 73f09874d8..87c3c75aea 100644 --- a/tests/handlers/test_device.py +++ b/tests/handlers/test_device.py
@@ -22,6 +22,7 @@ from tests import unittest, utils user1 = "@boris:aaa" user2 = "@theresa:bbb" + class DeviceTestCase(unittest.TestCase): def __init__(self, *args, **kwargs): super(DeviceTestCase, self).__init__(*args, **kwargs)