* pygnulib/GLImport.py (GLImport.execute): Fix a typo in a format
string.
Copyright-paperwork-exempt: Yes
+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.
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)