]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Fix a format string mistake.
authorMitch Capper <mitch.capper@gmail.com>
Thu, 1 Jun 2023 13:50:56 +0000 (15:50 +0200)
committerBruno Haible <bruno@clisp.org>
Thu, 1 Jun 2023 13:51:44 +0000 (15:51 +0200)
* pygnulib/GLImport.py (GLImport.execute): Fix a typo in a format
string.

Copyright-paperwork-exempt: Yes

ChangeLog
pygnulib/GLImport.py

index a945a0ed1693fadea596a2f36a21c86b63b52cce..74c17eaf1d3c0a6f46651e9e08fd48fe41c3863e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-06-01  Mitch Capper  <mitch.capper@gmail.com>
+
+       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  <bruno@clisp.org>
 
        Add info for maintainers and contributors.
index 41b33146a3f5ede25ac5293c05b2a5cc76b61bf2..b7305eaacbc079a2c99b58c3742a8a82ce2b4a3c 100644 (file)
@@ -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)