tests/hghaveaddon.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 25 Jan 2018 17:29:21 -0800
changeset 3454 56277182c029
parent 2959 ef361938dfa1
permissions -rw-r--r--
obslog: drop period from summary line in accordance with convention

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