tests/hghaveaddon.py
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 19 Jan 2018 17:29:48 +0530
changeset 3467 41ce24cf288d
parent 2959 ef361938dfa1
permissions -rw-r--r--
utility: move MultipleSuccessorsError from __init__.py The MultipleSuccessorsError is required in multiple modules in upcoming patches, so let's move it to utility first.

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