Submitter | phabricator |
---|---|
Date | April 12, 2018, 3:08 p.m. |
Message ID | <1ac8452b98df8711838d14d75254dad4@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/30792/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/convert/common.py b/hgext/convert/common.py --- a/hgext/convert/common.py +++ b/hgext/convert/common.py @@ -144,7 +144,7 @@ """ fails if revstr is not a 40 byte hex. mercurial and git both uses such format for their revision numbering """ - if not re.match(r'[0-9a-fA-F]{40,40}$', revstr): + if not re.match(br'[0-9a-fA-F]{40,40}$', revstr): raise error.Abort(_('%s entry %s is not a valid revision' ' identifier') % (mapname, revstr))