Skip to content

Commit 399bbd2

Browse files
committed
actually use the conditional statement
1 parent 653c6ce commit 399bbd2

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
@@ -1137,7 +1137,7 @@ def get_description(self, conflict=True):
11371137

11381138
if provide_list:
11391139
provide_list_mod = 'extensions(%s)' % ', '.join(['"%s"' % x for x in provide_list])
1140-
self.conditional_statement(self.check_version("8.2.0"), provide_list_mod)
1140+
lines.extend(['', self.conditional_statement(self.check_version("8.2.0"), provide_list_mod)])
11411141

11421142
txt += '\n'.join([''] + lines + ['']) % {
11431143
'name': self.app.name,

0 commit comments

Comments
 (0)