summaryrefslogtreecommitdiff
path: root/pygnulib/GLTestDir.py
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-08-05 15:15:16 +0200
committerBruno Haible <bruno@clisp.org>2022-08-05 15:15:16 +0200
commiteb194fa7a5c8abc2e79ca608466b04dc89a7c67d (patch)
tree4316fe805a17686eb1ce49a3ca63ca9b22529442 /pygnulib/GLTestDir.py
parent1f0e03e5a3e83d271c4aef05dbbb4850f66cee42 (diff)
downloadgnulib-eb194fa7a5c8abc2e79ca608466b04dc89a7c67d.tar.gz
gnulib-tool.py: Fix 'Undefined variable' errors.
* pygnulib/constants.py: Import codecs. * pygnulib/GLConfig.py (GLConfig.setLibName): Fix local variable reference. * pygnulib/GLFileSystem.py (GLFileSystem.lookup, GLFileAssistant.update): Fix local variable references. * pygnulib/GLEmiter.py (GLEmiter.po_POTFILES_in): Fix reference. * pygnulib/GLTestDir.py (GLMegaTestDir.execute): Define missing local variables.
Diffstat (limited to 'pygnulib/GLTestDir.py')
-rw-r--r--pygnulib/GLTestDir.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py
index 624a38317e..db74b9b4e3 100644
--- a/pygnulib/GLTestDir.py
+++ b/pygnulib/GLTestDir.py
@@ -906,6 +906,9 @@ class GLMegaTestDir(object):
Create a mega scratch package with the given modules one by one and all
together.'''
+ auxdir = self.config['auxdir']
+ verbose = self.config['verbosity']
+
megasubdirs = list()
modules = [ self.modulesystem.find(m)
for m in self.config['modules'] ]