tests/hghaveaddon.py
author Pulkit Goyal <7895pulkit@gmail.com>
Sat, 14 Oct 2017 20:17:25 +0530
branchstable
changeset 3064 7a1a4d1f0958
parent 2959 ef361938dfa1
permissions -rw-r--r--
pager: add a function in compats to start pager This will help us enabling pager when ui.pager API exists. Also we can try plugging in the old pager API in this function and we won't have to change anything.

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