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 ae3ca2b commit fd99ffdCopy full SHA for fd99ffd
nipype/algorithms/misc.py
@@ -1206,7 +1206,9 @@ def _run_interface(self, runtime):
1206
iflogger.error( 'Number of cols and length of field headings must be > 0' )
1207
1208
if len( self.inputs.new_fields ) != cols:
1209
- iflogger.error( 'Wrong length of fields, does not match number of cols' )
+ iflogger.warn( 'Wrong length of fields (%d), does not match number of \
1210
+ cols (%d)' % (len(self.inputs.new_fields), cols ) )
1211
+ cols = len( self.inputs.new_fields )
1212
1213
if len(headings)>0:
1214
argstr = '{:>%d}' % col_width
0 commit comments