tests/hghaveaddon.py
author Sushil khanchi <sushilkhanchi97@gmail.com>
Fri, 20 Dec 2019 17:31:57 +0530
branchstable
changeset 5024 b1a9d548af52
parent 2959 ef361938dfa1
permissions -rw-r--r--
evolve: fix a bug in logic of choosing destination for hg update

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