D6441: help: check if a subtopic exists and raise an error if it doesn't (issue6145)

ngoldbaum (Nathan Goldbaum) phabricator at mercurial-scm.org
Wed May 29 13:35:08 EDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGa84564b1a0b1: help: check if a subtopic exists and raise an error if it doesn't (issue6145) (authored by ngoldbaum, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D6441?vs=15268&id=15293

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

AFFECTED FILES
  mercurial/help.py

CHANGE DETAILS

diff --git a/mercurial/help.py b/mercurial/help.py
--- a/mercurial/help.py
+++ b/mercurial/help.py
@@ -689,6 +689,8 @@
             for names, header, doc in subtopics[name]:
                 if subtopic in names:
                     break
+            if not any(subtopic in s[0] for s in subtopics[name]):
+                raise error.UnknownCommand(name)
 
         if not header:
             for topic in helptable:



To: ngoldbaum, #hg-reviewers, martinvonz, pulkit
Cc: pulkit, martinvonz, av6, mercurial-devel


More information about the Mercurial-devel mailing list