From: Mitch Capper Date: Thu, 1 Jun 2023 13:50:56 +0000 (+0200) Subject: gnulib-tool.py: Fix a format string mistake. X-Git-Tag: v1.0~1272 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=89ddbe822c038ade207633a821734013e90f78e5;p=gnulib.git gnulib-tool.py: Fix a format string mistake. * pygnulib/GLImport.py (GLImport.execute): Fix a typo in a format string. Copyright-paperwork-exempt: Yes --- 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)