tests/hghaveaddon.py
author Anton Shestakov <av6@dwimlabs.net>
Thu, 30 Aug 2018 18:02:41 +0800
changeset 4058 90783c9c8609
parent 2959 ef361938dfa1
permissions -rw-r--r--
topic: prepare to handle non-string arguments to topic() revset

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