##// END OF EJS Templates
mq: clean up unused variable in qrefresh...
Kevin Bullock -
r13004:efbee274 default
parent child Browse files
Show More
@@ -1270,10 +1270,10 b' class queue(object):'
1270 # and then commit.
1270 # and then commit.
1271 #
1271 #
1272 # this should really read:
1272 # this should really read:
1273 # mm, dd, aa, aa2 = repo.status(tip, patchparent)[:4]
1273 # mm, dd, aa = repo.status(top, patchparent)[:4]
1274 # but we do it backwards to take advantage of manifest/chlog
1274 # but we do it backwards to take advantage of manifest/chlog
1275 # caching against the next repo.status call
1275 # caching against the next repo.status call
1276 mm, aa, dd, aa2 = repo.status(patchparent, top)[:4]
1276 mm, aa, dd = repo.status(patchparent, top)[:3]
1277 changes = repo.changelog.read(top)
1277 changes = repo.changelog.read(top)
1278 man = repo.manifest.read(changes[0])
1278 man = repo.manifest.read(changes[0])
1279 aaa = aa[:]
1279 aaa = aa[:]
General Comments 0
You need to be logged in to leave comments. Login now