mercurial/__main__.py
author Raphaël Gomès <rgomes@octobus.net>
Thu, 07 Dec 2023 14:19:02 +0100
branchstable
changeset 51169 71bd09bebbe3
parent 50697 e7ef11b75fdc
permissions -rw-r--r--
relnotes: add 6.6.1

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()