##// END OF EJS Templates
match: make the FLAG_RE pattern a raw string...
Matt Harbison -
r50540:c4874ebe stable
parent child Browse files
Show More
@@ -1323,7 +1323,7 b' def _globre(pat):'
1323 return res
1323 return res
1324
1324
1325
1325
1326 FLAG_RE = util.re.compile(b'^\(\?([aiLmsux]+)\)(.*)')
1326 FLAG_RE = util.re.compile(br'^\(\?([aiLmsux]+)\)(.*)')
1327
1327
1328
1328
1329 def _regex(kind, pat, globsuffix):
1329 def _regex(kind, pat, globsuffix):
General Comments 0
You need to be logged in to leave comments. Login now