We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f79a0b commit b26c69eCopy full SHA for b26c69e
easybuild/framework/easyblock.py
@@ -4787,7 +4787,8 @@ def make_checksum_lines(checksums, indent_level):
4787
source_urls_raw = raw.get('source_urls', '')
4788
patches_raw = raw.get('patches', '')
4789
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)
+ ectxt = regex.sub(source_urls_raw + sources_raw + data_sources_raw + patches_raw + checksums_txt + '\n',
4791
+ ectxt, count=1)
4792
4793
# get rid of potential remaining placeholders
4794
ectxt = regex.sub('', ectxt)
0 commit comments