summaryrefslogtreecommitdiff
path: root/pygnulib
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-08-04 22:24:20 +0200
committerBruno Haible <bruno@clisp.org>2022-08-04 22:24:20 +0200
commitc0c72120f0a9e1514d5a46d3588bf40bdbd20be4 (patch)
tree6d938ec39442de965732fde0962e037756fa3b91 /pygnulib
parent362f779b9df810f67c2f32afc0cd8c0707862a8a (diff)
downloadgnulib-c0c72120f0a9e1514d5a46d3588bf40bdbd20be4.tar.gz
gnulib-tool.py: Fix typo.
* pygnulib/GLImport.py (GLImport.execute): Actually handle file removals.
Diffstat (limited to 'pygnulib')
-rw-r--r--pygnulib/GLImport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py
index 1d014d68d2..9dff29a6b3 100644
--- a/pygnulib/GLImport.py
+++ b/pygnulib/GLImport.py
@@ -1053,7 +1053,7 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix
# 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: