Ah, the comma of doom.
This commit is contained in:
parent
6741c3dbd9
commit
d93ce29a86
|
@ -101,7 +101,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
|
||||||
if pat.strip("*?[]") == pat:
|
if pat.strip("*?[]") == pat:
|
||||||
# no special glob characters so we assume the user means
|
# no special glob characters so we assume the user means
|
||||||
# 'contains this string' rather than 'is this string'
|
# 'contains this string' rather than 'is this string'
|
||||||
pat = "*%s*" % (pat)
|
pat = "*%s*" % (pat,)
|
||||||
conditions = [{
|
conditions = [{
|
||||||
'kind': 'event_match',
|
'kind': 'event_match',
|
||||||
'key': 'content.body',
|
'key': 'content.body',
|
||||||
|
|
Loading…
Reference in New Issue