tests/hghaveaddon.py
author Anton Shestakov <av6@dwimlabs.net>
Wed, 26 Dec 2018 22:14:23 +0800
changeset 4323 482992803db6
parent 2959 ef361938dfa1
permissions -rw-r--r--
topic: make revsets like foo#stack[-1] work too We remove base commit when n < 0 because it's confusing to see base (which technically isn't a commit inside the stack) at both 0 and -n.

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