Index: scm.py |
=================================================================== |
--- scm.py (revision 46361) |
+++ scm.py (working copy) |
@@ -255,7 +255,8 @@ |
files, usually in the prospect to apply the patch for a try job.""" |
if not branch: |
branch = GIT.GetUpstreamBranch(cwd) |
- command = ['diff', '-p', '--no-prefix', branch + "..." + branch_head] |
+ command = ['diff', '-p', '--no-prefix', '--no-ext-diff', |
+ branch + "..." + branch_head] |
if not full_move: |
command.append('-C') |
# TODO(maruel): --binary support. |