tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 23 Apr 2018 11:44:05 +0100
changeset 3705 bd236590d127
parent 2959 ef361938dfa1
permissions -rw-r--r--
wrapping: fix a silly error were we checking on module and wrapping the other ...

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