From 020e196157bc741f3a16f6601a62e1663895ff3b Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Fri, 12 Apr 2024 15:51:28 +0200 Subject: [PATCH] gnulib-tool.py: Fix misspelled option in output. * pygnulib/GLImport.py (GLImport.actioncmd): Fix typo. --- ChangeLog | 5 +++++ pygnulib/GLImport.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5242e3a982..5c3bb864be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-04-12 Bruno Haible + + gnulib-tool.py: Fix misspelled option in output. + * pygnulib/GLImport.py (GLImport.actioncmd): Fix typo. + 2024-04-12 Bruno Haible gnulib-tool.py: Persist the --with-longrunning-tests option. diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py index 903bd2e581..8a576c2fb1 100644 --- a/pygnulib/GLImport.py +++ b/pygnulib/GLImport.py @@ -427,7 +427,7 @@ class GLImport: if self.config.checkInclTestCategory(TESTS['longrunning-test']): actioncmd += ' \\\n# --with-longrunning-tests' if self.config.checkInclTestCategory(TESTS['privileged-test']): - actioncmd += ' \\\n# --with-privileged-test' + actioncmd += ' \\\n# --with-privileged-tests' if self.config.checkInclTestCategory(TESTS['unportable-test']): actioncmd += ' \\\n# --with-unportable-tests' if self.config.checkInclTestCategory(TESTS['all-test']): -- 2.39.5