Commit e8d06426 authored by Stefan Behnel's avatar Stefan Behnel

unicode re fix

parent 1c4176f5
......@@ -280,7 +280,7 @@ if __name__ == '__main__':
annotate_source = True
import re
selectors = [ re.compile(r, re.I).search for r in sys.argv[1:] ]
selectors = [ re.compile(r, re.I|re.U).search for r in sys.argv[1:] ]
if not selectors:
selectors = [ lambda x:True ]
......
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