tests/hghaveaddon.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 18 Apr 2019 12:41:41 +0200
branchstable
changeset 4539 91628e5c0f6d
parent 2959 ef361938dfa1
permissions -rw-r--r--
topic: only wrap desthistedit for repo with topic This helps repository with and without topic to coexist in the same process.

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