* pygnulib/GLImport.py (GLImport.execute): Actually handle file
removals.
2022-08-04 Bruno Haible <bruno@clisp.org>
+ gnulib-tool.py: Fix typo.
+ * pygnulib/GLImport.py (GLImport.execute): Actually handle file
+ removals.
+
gnulib-tool.py: Coding style: Revisit line breaks.
* gnulib-tool.py: Avoid line breaks at arbitrary points inside
expressions. Use line breaks to clarify [... for ...] iterations.
# They will be removed and added to filetable['removed'] list.
pairs = [ f
for f in filetable['old']
- if f not in filetable['old'] ]
+ if f not in filetable['new'] ]
pairs = sorted(set(pairs), key=lambda t: tuple(t[0].lower()))
files = sorted(set(pair[0] for pair in pairs))
for file in files: