]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Fix missing space.
authorEric Blake <eblake@redhat.com>
Sat, 5 Apr 2025 20:21:13 +0000 (15:21 -0500)
committerEric Blake <eblake@redhat.com>
Sat, 5 Apr 2025 20:23:07 +0000 (15:23 -0500)
* pygnulib/main.py (main_with_exception_handling): Typo fix.

pygnulib/main.py

index 3b1b988f706c377f54a7dfe34c4812090d2ebb9c..77eed3d4ff1ecbe54151c6fa7e7ae45fadbee7d8 100644 (file)
@@ -1486,7 +1486,7 @@ def main_with_exception_handling() -> None:
                 message += 'cannot find %s - make sure you run gnulib-tool from within your package\'s directory' % errinfo
             elif errno == 4:
                 message += 'minimum supported autoconf version is 2.64. Try adding'
-                message += 'AC_PREREQ([%s])' % DEFAULT_AUTOCONF_MINVERSION
+                message += ' AC_PREREQ([%s])' % DEFAULT_AUTOCONF_MINVERSION
                 message += ' to your configure.ac.'
             elif errno == 5:
                 message += '%s is expected to contain gl_M4_BASE([%s])' % (repr(os.path.join(errinfo, 'gnulib-comp.m4')), repr(errinfo))