mercurial/__main__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 19 Sep 2023 03:00:44 +0200
changeset 51080 2d30d1ba0371
parent 50697 e7ef11b75fdc
permissions -rw-r--r--
debugdeltachain: add a parameter to display all info This will be useful with the next changeset that change the defaul output to display the minimum amount of information.

def run():
    from . import demandimport

    with demandimport.tracing.log('hg script'):
        demandimport.enable()
        from . import dispatch

        dispatch.run()


if __name__ == '__main__':
    run()