Skip to content

Commit 3f47b2e

Browse files
committed
fixing arg strings
1 parent 01747aa commit 3f47b2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2369,7 +2369,7 @@ class QwarpPlusMinusInputSpec(CommandLineInputSpec):
23692369
'values, the first fraction is used for '
23702370
'progressively blurring the base image and the '
23712371
'second for the source image.',
2372-
argstr='-pblur %g',
2372+
argstr='-pblur %s',
23732373
minlen=1,
23742374
maxlen=2)
23752375
blur = traits.List(traits.Float(),
@@ -2383,7 +2383,7 @@ class QwarpPlusMinusInputSpec(CommandLineInputSpec):
23832383
"filtering, rather than Gaussian blurring. This "
23842384
"type of filtering will better preserve edges, "
23852385
"which can be important in alignment.",
2386-
argstr='-blur %g',
2386+
argstr='-blur %s',
23872387
minlen=1,
23882388
maxlen=2)
23892389
noweight = traits.Bool(

0 commit comments

Comments
 (0)