##// END OF EJS Templates
py3: make sure regular expressions are bytes...
Pulkit Goyal -
r36720:470df8c5 default
parent child Browse files
Show More
@@ -53,7 +53,7 b' from .utils import dateutil'
53 53
54 54 propertycache = util.propertycache
55 55
56 nonascii = re.compile(r'[^\x21-\x7f]').search
56 nonascii = re.compile(br'[^\x21-\x7f]').search
57 57
58 58 class basectx(object):
59 59 """A basectx object represents the common logic for its children:
General Comments 0
You need to be logged in to leave comments. Login now