From owner-svn-doc-svnadmin@FreeBSD.ORG Sun May 26 20:29:43 2013 Return-Path: Delivered-To: svn-doc-svnadmin@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 35EDBAAE; Sun, 26 May 2013 20:29:43 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 27A70CB3; Sun, 26 May 2013 20:29:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4QKTgBk065572; Sun, 26 May 2013 20:29:42 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4QKTgiW065570; Sun, 26 May 2013 20:29:42 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201305262029.r4QKTgiW065570@svn.freebsd.org> From: Eitan Adler Date: Sun, 26 May 2013 20:29:42 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-svnadmin@freebsd.org Subject: svn commit: r41751 - svnadmin/hooks/scripts X-SVN-Group: doc-svnadmin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-svnadmin@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for svnadmin of the doc trees List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 May 2013 20:29:43 -0000 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)