summaryrefslogtreecommitdiff
path: root/pygnulib/GLTestDir.py
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-08-07 22:59:08 +0200
committerBruno Haible <bruno@clisp.org>2022-08-07 23:04:33 +0200
commitd528738ac3449ce1c4897882e6032eb3a3e929e2 (patch)
tree940a400f507468285e2048acbb7936d2a6b569e4 /pygnulib/GLTestDir.py
parent81b8c4d5565dbbea10eb3561063d2e8da52148d7 (diff)
downloadgnulib-d528738ac3449ce1c4897882e6032eb3a3e929e2.tar.gz
gnulib-tool.py: Rename a method.
* pygnulib/GLModuleSystem.py (GLModule.getAutoconfEarlySnippet): Renamed from GLModule.getAutoconfSnippet_Early. * pygnulib/GLImport.py: Update. * pygnulib/GLTestDir.py: Likewise.
Diffstat (limited to 'pygnulib/GLTestDir.py')
-rw-r--r--pygnulib/GLTestDir.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py
index 9a3fde66ea..746b815b49 100644
--- a/pygnulib/GLTestDir.py
+++ b/pygnulib/GLTestDir.py
@@ -456,7 +456,7 @@ class GLTestDir(object):
pass
# if str(module) not in ['gnumakefile', 'maintainer-makefile']
else:
- snippet = module.getAutoconfSnippet_Early()
+ snippet = module.getAutoconfEarlySnippet()
lines = [ line
for line in snippet.split('\n')
if line.strip() ]
@@ -573,7 +573,7 @@ class GLTestDir(object):
else: # if not single_configure
solution = module.isNonTests()
if solution:
- snippet = module.getAutoconfSnippet_Early()
+ snippet = module.getAutoconfEarlySnippet()
lines = [ line
for line in snippet.split('\n')
if line.strip() ]