Commit dbd0c3a1 authored by Jack Jansen's avatar Jack Jansen

Silly typo which caused the stack browser to crash.

parent a647807e
......@@ -15,7 +15,7 @@ arrows = (nullid, closedid, openid, closedsolidid, opensolidid)
has_ctlcharsRE = re.compile('[\000-\037\177-\377]')
def ctlcharsREsearch(str):
if has_ctlcharsRE(str) is None:
if has_ctlcharsRE.search(str) is None:
return -1
return 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment