D1905: strip: use in-place revset formatspec instead of %-formatting ourselves

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


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG41f952d10905: strip: use in-place revset formatspec instead of %-formatting ourselves (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D1905?vs=4905&id=5053

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

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("%s::.", uctx.rev())
             changedfiles = []
             for rev in descendantrevs:
                 # blindly reset the files, regardless of what actually changed



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


More information about the Mercurial-devel mailing list