Skip to content

Commit e9ec501

Browse files
author
Caspar van Leeuwen
committed
Fix too long line
1 parent c2cdb87 commit e9ec501

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

easybuild/framework/easyblock.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3702,8 +3702,8 @@ def trace_and_log(msg):
37023702
fail_msgs.append(f"Files with additional CUDA device code: {len(files_additional_devcode_fails)}.")
37033703
if len(files_missing_ptx_fails) > 0:
37043704
fail_msgs.append(f"Files missing CUDA PTX code: {len(files_missing_ptx_fails)}.")
3705-
msg = "Check the build log for the 'CUDA sanity check detailed report' for a full list of files that failed "
3706-
msg += "to pass the sanity check."
3705+
msg = "Check the build log for the 'CUDA sanity check detailed report' for a full list of files that "
3706+
msg += "failed to pass the sanity check."
37073707
fail_msgs.append(msg)
37083708

37093709
return fail_msgs

0 commit comments

Comments
 (0)