From a583981842411b23b58868bbd051961573ae4759 Mon Sep 17 00:00:00 2001 From: Ake Sandgren Date: Fri, 12 May 2023 07:44:49 +0200 Subject: [PATCH] Make GITHUB_LOWER_RELEASE description match GITHUB_LOWER_SOURCE Fix too long line. --- easybuild/framework/easyconfig/templates.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/easybuild/framework/easyconfig/templates.py b/easybuild/framework/easyconfig/templates.py index b0acf963b0..d0a209c192 100644 --- a/easybuild/framework/easyconfig/templates.py +++ b/easybuild/framework/easyconfig/templates.py @@ -116,11 +116,13 @@ ('GITHUB_SOURCE', 'https://github.com/%(github_account)s/%(name)s/archive', 'GitHub source URL (if github_account easyconfig parameter is not specified, namelower is used in its place)'), ('GITHUB_LOWER_SOURCE', 'https://github.com/%(github_account)s/%(namelower)s/archive', - 'GitHub source URL with lowercase name (if github_account easyconfig parameter is not specified, namelower is used in its place)'), + 'GitHub source URL with lowercase name (if github_account easyconfig ' + 'parameter is not specified, namelower is used in its place)'), ('GITHUB_RELEASE', 'https://github.com/%(github_account)s/%(name)s/releases/download/v%(version)s', 'GitHub release URL (if github_account easyconfig parameter is not specified, namelower is used in its place)'), ('GITHUB_LOWER_RELEASE', 'https://github.com/%(github_account)s/%(namelower)s/releases/download/v%(version)s', - 'GitHub release URL (if github_account easyconfig parameter is not specified, namelower is used in its place)'), + 'GitHub release URL with lowercase name (if github_account easyconfig ' + 'parameter is not specified, namelower is used in its place)'), ('GNU_SAVANNAH_SOURCE', 'https://download-mirror.savannah.gnu.org/releases/%(namelower)s', 'download.savannah.gnu.org source url'), ('GNU_SOURCE', 'https://ftpmirror.gnu.org/gnu/%(namelower)s',