Submitter | phabricator |
---|---|
Date | March 4, 2018, 6:01 p.m. |
Message ID | <1040ccdf020104291b511c71207da8ed@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28945/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -53,7 +53,7 @@ propertycache = util.propertycache -nonascii = re.compile(r'[^\x21-\x7f]').search +nonascii = re.compile(br'[^\x21-\x7f]').search class basectx(object): """A basectx object represents the common logic for its children: