diff options
| -rwxr-xr-x | CVSROOT/syncmail | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/syncmail b/CVSROOT/syncmail index ba6cc90..ce467a8 100755 --- a/CVSROOT/syncmail +++ b/CVSROOT/syncmail @@ -115,7 +115,7 @@ def calculate_diff(filespec, contextlines): difftype = "-C " + str(contextlines) else: difftype = "-uN" - diffcmd = '/usr/bin/cvs -f diff -kk %s -r %s -r %s %s' % ( + diffcmd = '/usr/bin/cvs -f diff -kk %s -b -r %s -r %s %s' % ( difftype, oldrev, newrev, file) fp = os.popen(diffcmd) lines = fp.readlines() |