##// END OF EJS Templates
fix: appease pyflakes and make unused variables more obvious...
Raphaël Gomès -
r49059:2f7caef0 default
parent child Browse files
Show More
@@ -434,7 +434,7 b' def getworkqueue(ui, repo, pats, opts, r'
434 numitems[rev] += 1
434 numitems[rev] += 1
435 workqueue = [
435 workqueue = [
436 (min(dstrevs), path, dstrevs)
436 (min(dstrevs), path, dstrevs)
437 for (filerev, baserevs, path), dstrevs in dstrevmap.items()
437 for (_filerev, _baserevs, path), dstrevs in dstrevmap.items()
438 ]
438 ]
439 # Move work items for earlier changesets to the front of the queue, so we
439 # Move work items for earlier changesets to the front of the queue, so we
440 # might be able to replace those changesets (in topological order) while
440 # might be able to replace those changesets (in topological order) while
General Comments 0
You need to be logged in to leave comments. Login now