Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dbd0c3a

Browse files
committed
Silly typo which caused the stack browser to crash.
1 parent a647807 commit dbd0c3a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Mac/Tools/IDE/PyBrowser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
has_ctlcharsRE = re.compile('[\000-\037\177-\377]')
1717
def ctlcharsREsearch(str):
18-
if has_ctlcharsRE(str) is None:
18+
if has_ctlcharsRE.search(str) is None:
1919
return -1
2020
return 1
2121

0 commit comments

Comments
 (0)