summaryrefslogtreecommitdiff
path: root/pygnulib/GLTestDir.py
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-07-31 23:28:18 +0200
committerBruno Haible <bruno@clisp.org>2022-07-31 23:53:01 +0200
commitf9b39c4e337f1dc0dd07c4f3985c476fb875d799 (patch)
tree7c5f4583619b5df254662cae031a8b76d8d18933 /pygnulib/GLTestDir.py
parent6b79ce37dd0153046cd05a43e0957dab20234d5e (diff)
downloadgnulib-f9b39c4e337f1dc0dd07c4f3985c476fb875d799.tar.gz
gnulib-tool.py: Fix typo.
* pygnulib/GLTestDir.py (GLMegaTestDir.execute): Invoke os.mkdir as intended.
Diffstat (limited to 'pygnulib/GLTestDir.py')
-rw-r--r--pygnulib/GLTestDir.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py
index 7a7f5c52fb..36aa5d2117 100644
--- a/pygnulib/GLTestDir.py
+++ b/pygnulib/GLTestDir.py
@@ -961,7 +961,7 @@ class GLMegaTestDir(object):
constants.execute(args, verbose)
try: # Try to make a directory
if not isdir('build-aux'):
- os, mkdir('build-aux')
+ os.mkdir('build-aux')
except Exception as error:
pass
args = [UTILS['autoconf']]