From 89ddbe822c038ade207633a821734013e90f78e5 Mon Sep 17 00:00:00 2001 From: Mitch Capper Date: Thu, 1 Jun 2023 15:50:56 +0200 Subject: [PATCH] gnulib-tool.py: Fix a format string mistake. * pygnulib/GLImport.py (GLImport.execute): Fix a typo in a format string. Copyright-paperwork-exempt: Yes --- ChangeLog | 7 +++++++ pygnulib/GLImport.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a945a0ed16..74c17eaf1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2023-06-01 Mitch Capper + + gnulib-tool.py: Fix a format string mistake. + * pygnulib/GLImport.py (GLImport.execute): Fix a typo in a format + string. + Copyright-paperwork-exempt: Yes + 2023-06-01 Bruno Haible Add info for maintainers and contributors. diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py index 41b33146a3..b7305eaacb 100644 --- a/pygnulib/GLImport.py +++ b/pygnulib/GLImport.py @@ -1057,7 +1057,7 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix if isfile(path) or os.path.islink(path): if not self.config['dryrun']: backup = '%s~' % path - print('Removing file %s (backup in )' % (path, backup)) + print('Removing file %s (backup in %s)' % (path, backup)) try: # Try to move file if os.path.exists(backup): os.remove(backup) -- 2.39.5