From: Bruno Haible Date: Sun, 31 Jul 2022 21:28:18 +0000 (+0200) Subject: gnulib-tool.py: Fix typo. X-Git-Tag: v1.0~2192 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=f9b39c4e337f1dc0dd07c4f3985c476fb875d799;p=gnulib.git gnulib-tool.py: Fix typo. * pygnulib/GLTestDir.py (GLMegaTestDir.execute): Invoke os.mkdir as intended. --- diff --git a/ChangeLog b/ChangeLog index cc3c89fd14..59f595310b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2022-07-31 Bruno Haible + gnulib-tool.py: Fix typo. + * pygnulib/GLTestDir.py (GLMegaTestDir.execute): Invoke os.mkdir as + intended. + gnulib-tool.py: Improve some error messages. * gnulib-tool.py (main): Write "*** Stop." instead of "*** Exit.". (__main__): Print an error message for GLError 5, 13, 14, 15, 16, 17, 18. 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']]