tests/hghaveaddon.py
author Martin von Zweigbergk <martinvonz@google.com>
Tue, 23 Apr 2019 09:31:32 -0700
changeset 4597 f3236cd49ab8
parent 2959 ef361938dfa1
permissions -rw-r--r--
evolve: clean up progress bar also when using -r It looks like 1fe3da0b4601 (evolve: add --rev option to the evolve command, 2015-05-05) forgot to update the "showprogress" variable.

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