Redundant parens

pull/35/head
David Baker 2015-01-28 14:49:59 +00:00
parent 6d485dd1c7
commit 445ad9941e
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class PushRuleStore(SQLBaseStore):
res = txn.fetchall()
if not res:
raise RuleNotFoundException("before/after rule not found: %s" % (relative_to_rule))
(priority_class, base_rule_priority) = res[0]
priority_class, base_rule_priority = res[0]
if 'priority_class' in kwargs and kwargs['priority_class'] != priority_class:
raise InconsistentRuleException(