tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 01 Oct 2017 09:10:48 +0100
changeset 3027 b220e2f5ebd5
parent 2959 ef361938dfa1
permissions -rw-r--r--
topic: update the topic-mode hint The hint is now shorter and reference the documentation. That should provide more concise output with more details for user who seeks it.

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