svn commit: r41751 - svnadmin/hooks/scripts

Eitan Adler eadler at FreeBSD.org
Sun May 26 20:29:43 UTC 2013


Author: eadler
Date: Sun May 26 20:29:41 2013
New Revision: 41751
URL: http://svnweb.freebsd.org/changeset/doc/41751

Log:
  Fix comments (if remove word where not needed)
  
  Approved by:	doceng (gjb)

Modified:
  svnadmin/hooks/scripts/verify.py

Modified: svnadmin/hooks/scripts/verify.py
==============================================================================
--- svnadmin/hooks/scripts/verify.py	Sun May 26 20:16:01 2013	(r41750)
+++ svnadmin/hooks/scripts/verify.py	Sun May 26 20:29:41 2013	(r41751)
@@ -9,7 +9,7 @@ import re
 import os.path
 from svn import core, fs, delta, repos
 
-# POLICY: if cvs2svn:cvs-rev must not be set.
+# POLICY: cvs2svn:cvs-rev must not be set.
 # POLICY: mime-type must be unset, text/*, application/* or image/*
 # POLICY: if a file does has fbsd:nokeywords, then svn:keywords must not be set
 # POLICY: if a file has binary chars and no fbsd:notbinary, then pretend its not binary
@@ -149,7 +149,7 @@ class ChangeReceiver(delta.Editor):
     if not changed:
       return
 
-    # POLICY: if cvs2svn:cvs-rev must not be set. period.
+    # POLICY: cvs2svn:cvs-rev must not be set. period.
     cvsrev = fs.node_prop(self.txn_root, path, 'cvs2svn:cvs-rev')
     if cvsrev:
       self.do_fail('Path "%s" needs to have "cvs2svn:cvs-rev" removed with "svn propdel".\n' % path)


More information about the svn-doc-svnadmin mailing list