view mercurial/__main__.py @ 50712:0913a49e020c

bundle-spec: add an official method to format a spec into a string This will be useful for automatic-clonebundles.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 21 Jun 2023 15:53:33 +0200
parents e7ef11b75fdc
children
line wrap: on
line source

def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()