D3166: debugwhyunstable: add support for revsets

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Fri Apr 6 14:51:17 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG9966f44ecab4: debugwhyunstable: add support for revsets (authored by martinvonz, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3166?vs=7793&id=7798

REVISION DETAIL
  https://phab.mercurial-scm.org/D3166

AFFECTED FILES
  mercurial/debugcommands.py

CHANGE DETAILS

diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py
--- a/mercurial/debugcommands.py
+++ b/mercurial/debugcommands.py
@@ -2547,7 +2547,7 @@
 @command('debugwhyunstable', [], _('REV'))
 def debugwhyunstable(ui, repo, rev):
     """explain instabilities of a changeset"""
-    for entry in obsutil.whyunstable(repo, repo[rev]):
+    for entry in obsutil.whyunstable(repo, scmutil.revsingle(repo, rev)):
         dnodes = ''
         if entry.get('divergentnodes'):
             dnodes = ' '.join('%s (%s)' % (ctx.hex(), ctx.phasestr())



To: martinvonz, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list