tests/hghaveaddon.py
author Sushil khanchi <sushilkhanchi97@gmail.com>
Mon, 23 Dec 2019 01:03:45 +0530
changeset 5236 6c0797ec50b6
parent 2959 ef361938dfa1
permissions -rw-r--r--
evolve: add quotes around the action in msg of pre-checking

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