mercurial/__main__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 10 Sep 2024 21:19:36 +0200
changeset 51835 6cc18075f82a
parent 50697 e7ef11b75fdc
child 51864 1c5810ce737e
permissions -rw-r--r--
ci: drop path manipulation that we do not need anymore The CI image has a squarer setup now.

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()