Skip to content

Commit

Permalink
hound
Browse files Browse the repository at this point in the history
  • Loading branch information
branfosj authored Dec 6, 2024
1 parent 9bb5841 commit 63719f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/generic/rpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def check_install_output(self, output):
"""
Check output of installation command, and clean up installation if needed.
"""
errors = re.findall(r"^ERROR:.*", output, flags=re.I|re.M)
errors = re.findall(r"^ERROR:.*", output, flags=re.I | re.M)

if errors:
self.log.info("R package %s failed with error:\n%s", self.name, '\n'.join(errors))
Expand Down

0 comments on commit 63719f3

Please sign in to comment.