Skip to content

Commit 6829757

Browse files
committed
rather use verbose than verb
1 parent 6e487b7 commit 6829757

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,12 +438,12 @@ class AllineateInputSpec(AFNICommandInputSpec):
438438
traits.Enum(*_dirs),
439439
argstr='-nwarp_fixdep%s',
440440
desc='To fix non-linear warp dependency along directions.')
441-
verb = traits.Bool(
441+
verbose = traits.Bool(
442442
argstr='-verb',
443443
desc='Print out verbose progress reports.')
444444
quiet = traits.Bool(
445445
argstr='-quiet',
446-
desc='Don\'t print out verbose progress reports.')
446+
desc="Don't print out verbose progress reports.")
447447

448448

449449
class AllineateOutputSpec(TraitedSpec):

nipype/interfaces/afni/tests/test_auto_Allineate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_Allineate_inputs():
120120
),
121121
usetemp=dict(argstr='-usetemp',
122122
),
123-
verb=dict(argstr='-verb',
123+
verbose=dict(argstr='-verb',
124124
),
125125
warp_type=dict(argstr='-warp %s',
126126
),

nipype/interfaces/afni/tests/test_auto_Copy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_Copy_inputs():
3030
terminal_output=dict(deprecated='1.0.0',
3131
nohash=True,
3232
),
33-
verb=dict(argstr='-verb',
33+
verbose=dict(argstr='-verb',
3434
),
3535
)
3636
inputs = Copy.input_spec()

nipype/interfaces/afni/tests/test_auto_TCat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_TCat_inputs():
3232
terminal_output=dict(deprecated='1.0.0',
3333
nohash=True,
3434
),
35-
verb=dict(argstr='-verb',
35+
verbose=dict(argstr='-verb',
3636
),
3737
)
3838
inputs = TCat.input_spec()

nipype/interfaces/afni/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ class CopyInputSpec(AFNICommandInputSpec):
751751
argstr='%s',
752752
position=-1,
753753
name_source='in_file')
754-
verb = traits.Bool(
754+
verbose = traits.Bool(
755755
desc='print progress reports',
756756
argstr='-verb')
757757

@@ -1991,7 +1991,7 @@ class TCatInputSpec(AFNICommandInputSpec):
19911991
'dataset mean back in. Option -rlt++ adds overall mean of all '
19921992
'dataset timeseries back in.',
19931993
position=1)
1994-
verb = traits.Bool(
1994+
verbose = traits.Bool(
19951995
desc='Print out some verbose output as the program',
19961996
argstr='-verb')
19971997

0 commit comments

Comments
 (0)