##// END OF EJS Templates
debug: remove an 'if ui.debug()' that is not doing anything...
Kyle Lippincott -
r35481:3bb1a647 default
parent child Browse files
Show More
@@ -2307,10 +2307,6 b' def debugsuccessorssets(ui, repo, *revs,'
2307 cache = {}
2307 cache = {}
2308 ctx2str = str
2308 ctx2str = str
2309 node2str = short
2309 node2str = short
2310 if ui.debug():
2311 def ctx2str(ctx):
2312 return ctx.hex()
2313 node2str = hex
2314 for rev in scmutil.revrange(repo, revs):
2310 for rev in scmutil.revrange(repo, revs):
2315 ctx = repo[rev]
2311 ctx = repo[rev]
2316 ui.write('%s\n'% ctx2str(ctx))
2312 ui.write('%s\n'% ctx2str(ctx))
General Comments 0
You need to be logged in to leave comments. Login now