Skip to content

Commit ee628d9

Browse files
committed
Remove extra space at end of lines
1 parent 6938ad1 commit ee628d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/tools/module_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ def update_paths(self, key, paths, prepend=True, allow_abs=False, expand_relpath
10171017
abspaths.append(path)
10181018

10191019
if delim != ':':
1020-
statements = ['%s-path -d "%s"\t%s\t\t%s \n' % (update_type, delim, key, p) for p in abspaths]
1020+
statements = ['%s-path -d "%s"\t%s\t\t%s\n' % (update_type, delim, key, p) for p in abspaths]
10211021
else:
10221022
statements = ['%s-path\t%s\t\t%s\n' % (update_type, key, p) for p in abspaths]
10231023
return ''.join(statements)

0 commit comments

Comments
 (0)