Update of /cvsroot/cvs-syncmail/syncmail
In directory sc8-pr-cvs1:/tmp/cvs-serv27288
Modified Files:
Tag: new-config-branch
syncmail
Log Message:
Slightly better type checking.
Index: syncmail
===================================================================
RCS file: /cvsroot/cvs-syncmail/syncmail/syncmail,v
retrieving revision 1.36.2.9
retrieving revision 1.36.2.10
diff -u -d -r1.36.2.9 -r1.36.2.10
--- syncmail 10 Jul 2003 21:44:56 -0000 1.36.2.9
+++ syncmail 10 Jul 2003 22:03:05 -0000 1.36.2.10
@@ -215,7 +215,7 @@
# This /has/ to happen in the background, otherwise we'll run into CVS
# lock contention. What a crock.
if config.diff_type == "context":
- difftype = "-C " + str(config.contextlines)
+ difftype = "-C %d" % config.contextlines
else:
difftype = "-u"
diffcmd = "/usr/bin/cvs -f diff -kk %s --minimal -r %s -r %s %s" \
|