tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 05 Jan 2018 22:17:27 +0100
changeset 3365 911c91ce686f
parent 2959 ef361938dfa1
permissions -rw-r--r--
caches: record 'desc' attribute on transaction This is useful to know if a transaction if server side or not.

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