mercurial/__main__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 06 Mar 2024 12:07:31 +0100
changeset 51528 88b0e07dd2cd
parent 50697 e7ef11b75fdc
permissions -rw-r--r--
branchcache: show the cache file content in test-branches-obsoletes.t This help to track the changes in format between v2 and v3.

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()