summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2019-11-21 12:00:14 +0000
committerGitHub <noreply@github.com>2019-11-21 12:00:14 +0000
commit3916e1b97a1ffc481dfdf66f7da58201a52140a9 (patch)
tree98a9c1e0ee1de0669aee83fd7b257a9e86792c45 /synapse/storage/_base.py
parentupdate macOS installation instructions (diff)
downloadsynapse-3916e1b97a1ffc481dfdf66f7da58201a52140a9.tar.xz
Clean up newline quote marks around the codebase (#6362)
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index ab596fa68d..6b8a9cd89a 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -851,7 +851,7 @@ class SQLBaseStore(object):
             allvalues.update(values)
             latter = "UPDATE SET " + ", ".join(k + "=EXCLUDED." + k for k in values)
 
-        sql = ("INSERT INTO %s (%s) VALUES (%s) " "ON CONFLICT (%s) DO %s") % (
+        sql = ("INSERT INTO %s (%s) VALUES (%s) ON CONFLICT (%s) DO %s") % (
             table,
             ", ".join(k for k in allvalues),
             ", ".join("?" for _ in allvalues),