Skip to content

Commit b26c69e

Browse files
author
Samuel Moors
committed
fix line too long
1 parent 3f79a0b commit b26c69e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

easybuild/framework/easyblock.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4787,7 +4787,8 @@ def make_checksum_lines(checksums, indent_level):
47874787
source_urls_raw = raw.get('source_urls', '')
47884788
patches_raw = raw.get('patches', '')
47894789
regex = re.compile(placeholder + '\n', re.M)
4790-
ectxt = regex.sub(source_urls_raw + sources_raw + data_sources_raw + patches_raw + checksums_txt + '\n', ectxt, count=1)
4790+
ectxt = regex.sub(source_urls_raw + sources_raw + data_sources_raw + patches_raw + checksums_txt + '\n',
4791+
ectxt, count=1)
47914792

47924793
# get rid of potential remaining placeholders
47934794
ectxt = regex.sub('', ectxt)

0 commit comments

Comments
 (0)