Submitter | phabricator |
---|---|
Date | May 19, 2018, 7:50 p.m. |
Message ID | <d4bb4299fce086a0daa953ee73918d0d@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/31739/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/patch.py b/mercurial/patch.py --- a/mercurial/patch.py +++ b/mercurial/patch.py @@ -2113,6 +2113,7 @@ args.append('-d %s' % procutil.shellquote(cwd)) cmd = ('%s %s -p%d < %s' % (patcher, ' '.join(args), strip, procutil.shellquote(patchname))) + ui.debug('Using external patch tool: %s\n' % cmd) fp = procutil.popen(cmd, 'rb') try: for line in util.iterfile(fp):