From owner-svn-src-svnadmin@FreeBSD.ORG Thu Mar 20 18:43:58 2014 Return-Path: Delivered-To: svn-src-svnadmin@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 805EBA27; Thu, 20 Mar 2014 18:43:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D849EBF; Thu, 20 Mar 2014 18:43:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2KIhwM5066855; Thu, 20 Mar 2014 18:43:58 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2KIhwCv066854; Thu, 20 Mar 2014 18:43:58 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201403201843.s2KIhwCv066854@svn.freebsd.org> From: Glen Barber Date: Thu, 20 Mar 2014 18:43:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-svnadmin@freebsd.org Subject: svn commit: r263433 - svnadmin/hooks/scripts X-SVN-Group: svnadmin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-svnadmin@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the admin / configuration tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Mar 2014 18:43:58 -0000 Author: gjb Date: Thu Mar 20 18:43:57 2014 New Revision: 263433 URL: http://svnweb.freebsd.org/changeset/base/263433 Log: Support Relnotes: for svn template Approved by: re (implicit) Sponsored by: The FreeBSD Foundation Modified: svnadmin/hooks/scripts/log-police.py Modified: svnadmin/hooks/scripts/log-police.py ============================================================================== --- svnadmin/hooks/scripts/log-police.py Thu Mar 20 18:15:37 2014 (r263432) +++ svnadmin/hooks/scripts/log-police.py Thu Mar 20 18:43:57 2014 (r263433) @@ -50,6 +50,7 @@ def fix_log_message(log_message): if line == "Approved by:": continue if line == "Obtained from:": continue if line == "MFC after:": continue + if line == "Relnotes:": continue if line == "Security:": continue if line == "Sponsored by:": continue s = s + line + "\n"