tests/hghaveaddon.py
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 19 Jan 2018 16:44:00 +0530
changeset 3466 0a8e3130ad00
parent 2959 ef361938dfa1
permissions -rw-r--r--
evolvecmd: move more core from __init__.py to evolvecmd.py We are done with moving helper code, we will now be moving the evolve command in the new module.

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