Submitter | Simon Farnsworth |
---|---|
Date | Feb. 9, 2017, 9:52 p.m. |
Message ID | <acb1103ff1de3c9c40a4.1486677138@devvm022.lla2.facebook.com> |
Download | mbox | patch |
Permalink | /patch/18371/ |
State | Changes Requested |
Headers | show |
Comments
Patch
diff --git a/hgext/extdiff.py b/hgext/extdiff.py --- a/hgext/extdiff.py +++ b/hgext/extdiff.py @@ -273,7 +273,8 @@ cmdline = re.sub(regex, quote, cmdline) ui.debug('running %r in %s\n' % (cmdline, tmproot)) - ui.system(cmdline, cwd=tmproot) + with ui.timeblockedsection('extdiff'): + ui.system(cmdline, cwd=tmproot) for copy_fn, working_fn, mtime in fns_and_mtime: if os.lstat(copy_fn).st_mtime != mtime: