File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -438,12 +438,12 @@ class AllineateInputSpec(AFNICommandInputSpec):
438
438
traits .Enum (* _dirs ),
439
439
argstr = '-nwarp_fixdep%s' ,
440
440
desc = 'To fix non-linear warp dependency along directions.' )
441
- verb = traits .Bool (
441
+ verbose = traits .Bool (
442
442
argstr = '-verb' ,
443
443
desc = 'Print out verbose progress reports.' )
444
444
quiet = traits .Bool (
445
445
argstr = '-quiet' ,
446
- desc = ' Don\ ' t print out verbose progress reports.' )
446
+ desc = " Don't print out verbose progress reports." )
447
447
448
448
449
449
class AllineateOutputSpec (TraitedSpec ):
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ def test_Allineate_inputs():
120
120
),
121
121
usetemp = dict (argstr = '-usetemp' ,
122
122
),
123
- verb = dict (argstr = '-verb' ,
123
+ verbose = dict (argstr = '-verb' ,
124
124
),
125
125
warp_type = dict (argstr = '-warp %s' ,
126
126
),
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def test_Copy_inputs():
30
30
terminal_output = dict (deprecated = '1.0.0' ,
31
31
nohash = True ,
32
32
),
33
- verb = dict (argstr = '-verb' ,
33
+ verbose = dict (argstr = '-verb' ,
34
34
),
35
35
)
36
36
inputs = Copy .input_spec ()
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def test_TCat_inputs():
32
32
terminal_output = dict (deprecated = '1.0.0' ,
33
33
nohash = True ,
34
34
),
35
- verb = dict (argstr = '-verb' ,
35
+ verbose = dict (argstr = '-verb' ,
36
36
),
37
37
)
38
38
inputs = TCat .input_spec ()
Original file line number Diff line number Diff line change @@ -751,7 +751,7 @@ class CopyInputSpec(AFNICommandInputSpec):
751
751
argstr = '%s' ,
752
752
position = - 1 ,
753
753
name_source = 'in_file' )
754
- verb = traits .Bool (
754
+ verbose = traits .Bool (
755
755
desc = 'print progress reports' ,
756
756
argstr = '-verb' )
757
757
@@ -1991,7 +1991,7 @@ class TCatInputSpec(AFNICommandInputSpec):
1991
1991
'dataset mean back in. Option -rlt++ adds overall mean of all '
1992
1992
'dataset timeseries back in.' ,
1993
1993
position = 1 )
1994
- verb = traits .Bool (
1994
+ verbose = traits .Bool (
1995
1995
desc = 'Print out some verbose output as the program' ,
1996
1996
argstr = '-verb' )
1997
1997
You can’t perform that action at this time.
0 commit comments