From owner-svn-src-svnadmin@freebsd.org Tue Jan 9 21:02:41 2018 Return-Path: Delivered-To: svn-src-svnadmin@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42012E72689; Tue, 9 Jan 2018 21:02:41 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D33670F34; Tue, 9 Jan 2018 21:02:41 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 651731C384; Tue, 9 Jan 2018 21:02:40 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w09L2eQk002936; Tue, 9 Jan 2018 21:02:40 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w09L2ewO002935; Tue, 9 Jan 2018 21:02:40 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201801092102.w09L2ewO002935@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Tue, 9 Jan 2018 21:02:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-svnadmin@freebsd.org Subject: svn commit: r327739 - head/contrib/subversion/subversion/svn svnadmin/hooks/scripts X-SVN-Group: svnadmin X-SVN-Commit-Author: asomers X-SVN-Commit-Paths: head/contrib/subversion/subversion/svn svnadmin/hooks/scripts X-SVN-Commit-Revision: 327739 X-SVN-Commit-Repository: base 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.25 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: Tue, 09 Jan 2018 21:02:41 -0000 Author: asomers Date: Tue Jan 9 21:02:39 2018 New Revision: 327739 URL: https://svnweb.freebsd.org/changeset/base/327739 Log: Add Pull Request to the Subversion commit template Reviewed by: emaste MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D13178 Modified: svnadmin/hooks/scripts/log-police.py Changes in other areas also in this revision: Modified: head/contrib/subversion/subversion/svn/util.c Modified: svnadmin/hooks/scripts/log-police.py ============================================================================== --- svnadmin/hooks/scripts/log-police.py Tue Jan 9 20:53:30 2018 (r327738) +++ svnadmin/hooks/scripts/log-police.py Tue Jan 9 21:02:39 2018 (r327739) @@ -57,6 +57,7 @@ def fix_log_message(log_message): if line == "Changes:": continue if line == "With hat:": continue if line == "Sponsored by:": continue + if line == "Pull Request:": continue if line == "Differential Revision:": continue s = s + line + "\n" s = s.rstrip() + "\n"