File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
{ "bad_versions" : [ "1.2.1",
2
- "1.2.3"]
3
- }
2
+ "1.2.3",
3
+ "1.3.0"]
4
+ }
Original file line number Diff line number Diff line change
1
+ 1.3.1 (November 12, 2019)
2
+ =========================
3
+
4
+ * FIX: Restore checking traits or bunch (https://github.com/nipy/nipype/pull/3094)
5
+
6
+
1
7
1.3.0 (November 11, 2019)
2
8
=========================
3
9
Original file line number Diff line number Diff line change @@ -551,7 +551,12 @@ def _get_inputs(self):
551
551
output_value = evaluate_connect_function (
552
552
conn [1 ], conn [2 ], value )
553
553
else :
554
- output_value = getattr (outputs , conn )
554
+ output_name = conn
555
+ try :
556
+ output_value = outputs .trait_get ()[output_name ]
557
+ except AttributeError :
558
+ output_value = outputs .dictcopy ()[output_name ]
559
+ logger .debug ("output: %s" , output_name )
555
560
556
561
try :
557
562
self .set_input (key , deepcopy (output_value ))
You can’t perform that action at this time.
0 commit comments