##// END OF EJS Templates
strip: use %d for known-int string interpolation...
Augie Fackler -
r35843:c3ebe69f default
parent child Browse files
Show More
@@ -215,7 +215,7 b' def stripcmd(ui, repo, *revs, **opts):'
215
215
216 # only reset the dirstate for files that would actually change
216 # only reset the dirstate for files that would actually change
217 # between the working context and uctx
217 # between the working context and uctx
218 descendantrevs = repo.revs("%s::.", uctx.rev())
218 descendantrevs = repo.revs(b"%d::.", uctx.rev())
219 changedfiles = []
219 changedfiles = []
220 for rev in descendantrevs:
220 for rev in descendantrevs:
221 # blindly reset the files, regardless of what actually changed
221 # blindly reset the files, regardless of what actually changed
General Comments 0
You need to be logged in to leave comments. Login now