##// END OF EJS Templates
debugwhyunstable: add support for revsets...
Martin von Zweigbergk -
r37414:9966f44e default
parent child Browse files
Show More
@@ -2547,7 +2547,7 b' def debugwalk(ui, repo, *pats, **opts):'
2547 @command('debugwhyunstable', [], _('REV'))
2547 @command('debugwhyunstable', [], _('REV'))
2548 def debugwhyunstable(ui, repo, rev):
2548 def debugwhyunstable(ui, repo, rev):
2549 """explain instabilities of a changeset"""
2549 """explain instabilities of a changeset"""
2550 for entry in obsutil.whyunstable(repo, repo[rev]):
2550 for entry in obsutil.whyunstable(repo, scmutil.revsingle(repo, rev)):
2551 dnodes = ''
2551 dnodes = ''
2552 if entry.get('divergentnodes'):
2552 if entry.get('divergentnodes'):
2553 dnodes = ' '.join('%s (%s)' % (ctx.hex(), ctx.phasestr())
2553 dnodes = ' '.join('%s (%s)' % (ctx.hex(), ctx.phasestr())
General Comments 0
You need to be logged in to leave comments. Login now