Skip to content

Commit caef609

Browse files
committed
Use correct variable for adding paths instead of entire dict value
1 parent 3d52e6a commit caef609

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/framework/easyblock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1486,7 +1486,7 @@ def make_module_extra(self, altroot=None, altversion=None):
14861486
raise EasyBuildError('modextrapaths dict value "{value}" paths must be list or str')
14871487
if not isinstance(delim, str):
14881488
raise EasyBuildError('modextrapaths dict value "{value}" delimiter must be a str')
1489-
lines.append(self.module_generator.update_paths(key, value, prepend=prepend, delim=delim,
1489+
lines.append(self.module_generator.update_paths(key, paths, prepend=prepend, delim=delim,
14901490
allow_abs=allow_abs))
14911491
else:
14921492
if isinstance(value, str):

0 commit comments

Comments
 (0)