##// END OF EJS Templates
configitems: use standard "dynamicdefault" approach in edge case...
configitems: use standard "dynamicdefault" approach in edge case This makes for fewer edge cases, which will help a future patch.

File last commit:

r51590:e7ef11b7 default
r51652:f0ae403b default
Show More
__main__.py
12 lines | 215 B | text/x-python | PythonLexer
def run():
from . import demandimport
with demandimport.tracing.log('hg script'):
demandimport.enable()
from . import dispatch
dispatch.run()
if __name__ == '__main__':
run()