From: Eric Blake Date: Sat, 5 Apr 2025 20:21:13 +0000 (-0500) Subject: gnulib-tool.py: Fix missing space. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=e9bad55e3bf393d53170457c2d9da2e7258ab17a;p=gnulib.git gnulib-tool.py: Fix missing space. * pygnulib/main.py (main_with_exception_handling): Typo fix. --- diff --git a/pygnulib/main.py b/pygnulib/main.py index 9767f38676..5e01c2e8ed 100644 --- a/pygnulib/main.py +++ b/pygnulib/main.py @@ -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))