tests/hghaveaddon.py
author Anton Shestakov <av6@dwimlabs.net>
Sat, 09 Mar 2019 13:13:53 +0800
changeset 4435 7915aef191ff
parent 2959 ef361938dfa1
permissions -rw-r--r--
stack: show content and phase divergent state and symbol Replacing ' ' with '-' is just for color labels.

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