view mercurial/__main__.py @ 52260:b5517711afca stable

wheels: rely on the image config to be able to access the repository The image should now have the proper config set globally to access this
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 15 Nov 2024 16:41:30 +0100
parents 1c5810ce737e
children
line wrap: on
line source

from __future__ import annotations


def run():
    from . import demandimport

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

        dispatch.run()


if __name__ == '__main__':
    run()