##// END OF EJS Templates
admin-verify: fix error message handling...
admin-verify: fix error message handling `dirstate.verify` used to return tuples but does not anymore, it returns the pre-formatted error message, which is a nicer interface anyway.

File last commit:

r51590:e7ef11b7 default
r52507:2a27b921 stable
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()