summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-01-27 10:27:39 +0000
committerErik Johnston <erik@matrix.org>2017-01-27 10:27:39 +0000
commitf25a4a4692d9b4618efb64984c10a6e8243a4a0b (patch)
treec21e8a0d4f2457ecc1c73ae2db8c49a2eb536797 /synapse/storage
parentFix unit tests (diff)
downloadsynapse-f25a4a4692d9b4618efb64984c10a6e8243a4a0b.tar.xz
Remove unused param
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/devices.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/storage/devices.py b/synapse/storage/devices.py
index 1c48c3af99..b99de2f1b0 100644
--- a/synapse/storage/devices.py
+++ b/synapse/storage/devices.py
@@ -26,8 +26,7 @@ logger = logging.getLogger(__name__)
 class DeviceStore(SQLBaseStore):
     @defer.inlineCallbacks
     def store_device(self, user_id, device_id,
-                     initial_device_display_name,
-                     ignore_if_known=True):
+                     initial_device_display_name):
         """Ensure the given device is known; add it to the store if not
 
         Args: