From: Fred L. D. Jr. <fd...@us...> - 2005-01-04 15:59:54
|
Update of /cvsroot/cvs-syncmail/syncmail In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12799 Modified Files: syncmail Log Message: remove a spurious print statement, and explain why that condition might normally be met Index: syncmail =================================================================== RCS file: /cvsroot/cvs-syncmail/syncmail/syncmail,v retrieving revision 2.2 retrieving revision 2.3 diff -u -d -r2.2 -r2.3 --- syncmail 7 Oct 2004 02:25:03 -0000 2.2 +++ syncmail 4 Jan 2005 15:59:39 -0000 2.3 @@ -339,7 +339,10 @@ f.close() for entry in mapping.values(): if not hasattr(entry, "new_revision"): - print 'confused about file', entry.name, '-- ignoring' + # We're running as part of a commit from a local + # filesystem access to the repository, so we're looking at + # a working copy. There may be lots of files we are + # supposed to ignore. del mapping[entry.name] return mapping |