D3281: py3: add b'' prefix to make the regex bytes
pulkit (Pulkit Goyal)
phabricator at mercurial-scm.org
Thu Apr 12 15:08:17 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG39ced3ef586d: py3: add b'' prefix to make the regex bytes (authored by pulkit, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D3281?vs=8048&id=8060
REVISION DETAIL
https://phab.mercurial-scm.org/D3281
AFFECTED FILES
hgext/convert/common.py
CHANGE DETAILS
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))
To: pulkit, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list