Mercurial > hg
view mercurial/__main__.py @ 51462:de1bc7db9f61
branchcache: simplify a long line
Gratuitous change to help code readability.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 26 Feb 2024 15:15:10 +0100 |
parents | e7ef11b75fdc |
children | 1c5810ce737e |
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()