D2557: revset: use %d to turn an int into a bytestr
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Fri Mar 2 19:51:56 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGb755eab7e677: revset: use %d to turn an int into a bytestr (authored by durin42, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2557?vs=6367&id=6374
REVISION DETAIL
https://phab.mercurial-scm.org/D2557
AFFECTED FILES
mercurial/revset.py
CHANGE DETAILS
diff --git a/mercurial/revset.py b/mercurial/revset.py
--- a/mercurial/revset.py
+++ b/mercurial/revset.py
@@ -2061,7 +2061,7 @@
try:
# fast path for integer revision
r = int(t)
- if str(r) != t or r not in cl:
+ if ('%d' % r) != t or r not in cl:
raise ValueError
revs = [r]
except ValueError:
To: durin42, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list