tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 20 Feb 2018 09:36:55 +0100
changeset 4291 8f54ab5dd4e2
parent 2959 ef361938dfa1
permissions -rw-r--r--
split: add a help entry to the final prompt We are about to add more option in this prompt. Adding a way to document then seems like a good first step.

import hghave

@hghave.check("docgraph-ext", "Extension to generate graph from repository")
def docgraph():
    try:
        import hgext.docgraph
        hgext.docgraph.cmdtable # trigger import
    except ImportError:
        try:
            import hgext3rd.docgraph
            hgext3rd.docgraph.cmdtable # trigger import
        except ImportError:
            return False
    return True