From e9bad55e3bf393d53170457c2d9da2e7258ab17a Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Sat, 5 Apr 2025 15:21:13 -0500 Subject: [PATCH] gnulib-tool.py: Fix missing space. * pygnulib/main.py (main_with_exception_handling): Typo fix. --- pygnulib/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.39.5