##// END OF EJS Templates
py3: fix for Python 3.12 emitting SyntaxWarning on invalid escape sequences...
Mads Kiilerich -
r51245:4be9ecc9 stable
parent child Browse files
Show More
@@ -403,7 +403,7 b" REVLOG_FILES_VOLATILE_EXT = (b'.n', b'.n"
403 # some exception to the above matching
403 # some exception to the above matching
404 #
404 #
405 # XXX This is currently not in use because of issue6542
405 # XXX This is currently not in use because of issue6542
406 EXCLUDED = re.compile(b'.*undo\.[^/]+\.(nd?|i)$')
406 EXCLUDED = re.compile(br'.*undo\.[^/]+\.(nd?|i)$')
407
407
408
408
409 def is_revlog(f, kind, st):
409 def is_revlog(f, kind, st):
General Comments 0
You need to be logged in to leave comments. Login now