From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id B5191398795E; Thu, 17 Sep 2020 17:12:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B5191398795E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1600362724; bh=7MaspI0di966X7uz0u9qKn3eMqYa0LwSbkWBIHXVIxg=; h=From:To:Subject:Date:From; b=wzgCNnUSyBBMB9s0xhHK5IaqBudSr82f78SNDaL+zSgvDvytiQWxKgXArc9eO7bPA rc3gtLl/jUEMu6l5aFGu7CG6FekYnxcjhSKOEo6TIh2YBdtmOqjrmFn2tfiYs8rxzD rn9QxwBmxx3VSPmtraqJRtUaXJzcuKw6QX6p6qvg= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/vendors/redhat/heads/gcc-8-branch)] gcc-changelog: Fix typo in output X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/vendors/redhat/heads/gcc-8-branch X-Git-Oldrev: 26522e49146ddd017f0311f9f453e821b58316d0 X-Git-Newrev: 40c6c107915d2cf7a5d61c33b01630489850e309 Message-Id: <20200917171204.B5191398795E@sourceware.org> Date: Thu, 17 Sep 2020 17:12:04 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Sep 2020 17:12:04 -0000 https://gcc.gnu.org/g:40c6c107915d2cf7a5d61c33b01630489850e309 commit 40c6c107915d2cf7a5d61c33b01630489850e309 Author: Jonathan Wakely Date: Fri Jul 17 09:53:19 2020 +0100 gcc-changelog: Fix typo in output contrib/ChangeLog: * gcc-changelog/git_update_version.py: Fix typo. (cherry picked from commit 0c1d1c01039a96c191a7aded40e5df40b14d387a) Diff: --- contrib/gcc-changelog/git_update_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gcc-changelog/git_update_version.py b/contrib/gcc-changelog/git_update_version.py index ac1b206d238..d2cadb8811c 100755 --- a/contrib/gcc-changelog/git_update_version.py +++ b/contrib/gcc-changelog/git_update_version.py @@ -39,7 +39,7 @@ def prepend_to_changelog_files(repo, folder, git_commit, add_to_git): raise AssertionError() for entry, output in git_commit.to_changelog_entries(use_commit_ts=True): full_path = os.path.join(folder, entry, 'ChangeLog') - print('writting to %s' % full_path) + print('writing to %s' % full_path) if os.path.exists(full_path): with open(full_path) as f: content = f.read()