# HG changeset patch # User Augie Fackler # Date 1516288961 18000 # Node ID 011ca2d795d60ae9d4a75e0fa5be7553655c235e # Parent 4be991331a46c657544c7915d926cff2661e33a2 strip: use in-place revset formatspec instead of %-formatting ourselves Caught by Yuya during review of D1884. Differential Revision: https://phab.mercurial-scm.org/D1905 diff -r 4be991331a46 -r 011ca2d795d6 hgext/strip.py --- a/hgext/strip.py Wed Jan 17 19:11:51 2018 -0500 +++ b/hgext/strip.py Thu Jan 18 10:22:41 2018 -0500 @@ -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