Use %s instead of +

pull/35/head
David Baker 2015-01-28 14:52:58 +00:00
parent 93aac9bb7b
commit e78dd33292
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ class PushRuleStore(SQLBaseStore):
# get the priority of the rule we're inserting after/before
sql = (
"SELECT priority_class, priority FROM "+PushRuleTable.table_name+
" WHERE user_name = ? and rule_id = ?"
"SELECT priority_class, priority FROM ? "
"WHERE user_name = ? and rule_id = ?" % (PushRuleTable.table_name,)
)
txn.execute(sql, (user_name, relative_to_rule))
res = txn.fetchall()