tests/hghaveaddon.py
author Aurélien Campéas
Thu, 21 Sep 2017 14:05:27 +0200
changeset 2967 c62b3776fec3
parent 2959 ef361938dfa1
permissions -rw-r--r--
topics/tuto: highlight the behaviour on publish + update And the fact that empty topics vanish if we update out of them.

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