]> 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)
committerBruno Haible <bruno@clisp.org>
Mon, 14 Apr 2025 22:52:45 +0000 (00:52 +0200)
* pygnulib/main.py (main_with_exception_handling): Typo fix.

pygnulib/main.py

index 9767f386763b821fba2a05ffe216bb98cbaa25db..5e01c2e8edde9ae90aee63c33de4c30a022c9d5a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2024 Free Software Foundation, Inc.
+# Copyright (C) 2002-2025 Free Software Foundation, Inc.
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -1402,7 +1402,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))