##// END OF EJS Templates
run-tests: small rework of the infamous lib warning to colorize it...
run-tests: small rework of the infamous lib warning to colorize it I am about to add more dore around it and so I do the smaller change first.

File last commit:

r52757:1c5810ce default
r53412:d63ab79e default
Show More
__main__.py
15 lines | 252 B | text/x-python | PythonLexer
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()