mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Use %s instead of +
This commit is contained in:
parent
93aac9bb7b
commit
e78dd33292
@ -85,8 +85,8 @@ class PushRuleStore(SQLBaseStore):
|
|||||||
|
|
||||||
# get the priority of the rule we're inserting after/before
|
# get the priority of the rule we're inserting after/before
|
||||||
sql = (
|
sql = (
|
||||||
"SELECT priority_class, priority FROM "+PushRuleTable.table_name+
|
"SELECT priority_class, priority FROM ? "
|
||||||
" WHERE user_name = ? and rule_id = ?"
|
"WHERE user_name = ? and rule_id = ?" % (PushRuleTable.table_name,)
|
||||||
)
|
)
|
||||||
txn.execute(sql, (user_name, relative_to_rule))
|
txn.execute(sql, (user_name, relative_to_rule))
|
||||||
res = txn.fetchall()
|
res = txn.fetchall()
|
||||||
|
Loading…
Reference in New Issue
Block a user