tests/hghaveaddon.py
author Sushil khanchi <sushilkhanchi97@gmail.com>
Mon, 01 Oct 2018 12:37:42 +0530
changeset 4152 fb22c7a6ca8b
parent 2959 ef361938dfa1
permissions -rw-r--r--
topic: add topicidx template keyword This keyword will be useful where we want to see the index of the changeset in the stack when we run `hg stack`.

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