We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd4264f commit b5bf7d1Copy full SHA for b5bf7d1
nipype/interfaces/fsl/model.py
@@ -1134,7 +1134,7 @@ class L2Model(BaseInterface):
1134
def _run_interface(self, runtime):
1135
cwd = os.getcwd()
1136
mat_txt = ['/NumWaves 1',
1137
- '/NumPoints {}'.format(self.inputs.num_copes),
+ '/NumPoints {:d}'.format(self.inputs.num_copes),
1138
'/PPheights 1',
1139
'',
1140
'/Matrix']
@@ -1154,7 +1154,7 @@ def _run_interface(self, runtime):
1154
con_txt = '\n'.join(con_txt)
1155
1156
grp_txt = ['/NumWaves 1',
1157
1158
1159
1160
for i in range(self.inputs.num_copes):
0 commit comments