D1884: strip: use %d for known-int string interpolation

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Feb 1 20:32:53 UTC 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG81a00cd2a6e5: strip: use %d for known-int string interpolation (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D1884?vs=4906&id=5054

REVISION DETAIL
  https://phab.mercurial-scm.org/D1884

AFFECTED FILES
  hgext/strip.py

CHANGE DETAILS

diff --git a/hgext/strip.py b/hgext/strip.py
--- a/hgext/strip.py
+++ b/hgext/strip.py
@@ -215,7 +215,7 @@
 
             # only reset the dirstate for files that would actually change
             # between the working context and uctx
-            descendantrevs = repo.revs("%s::.", uctx.rev())
+            descendantrevs = repo.revs(b"%d::.", uctx.rev())
             changedfiles = []
             for rev in descendantrevs:
                 # blindly reset the files, regardless of what actually changed



To: durin42, #hg-reviewers, pulkit, indygreg
Cc: yuja, pulkit, mercurial-devel


More information about the Mercurial-devel mailing list