@@ -241,7 +241,7 @@ def add_results(self, results):
241
241
continue
242
242
in_attr = {pm .PROV ["label" ]: key ,
243
243
nipype_ns ["environment_variable" ]: key ,
244
- nipype_ns ["value" ]: safe_encode (val )}
244
+ pm . PROV ["value" ]: safe_encode (val )}
245
245
id = get_attr_id (in_attr )
246
246
self .g .entity (id , in_attr )
247
247
self .g .hadMember (env_collection , id )
@@ -257,7 +257,7 @@ def add_results(self, results):
257
257
for idx , (key , val ) in enumerate (sorted (inputs .items ())):
258
258
in_attr = {pm .PROV ["label" ]: key ,
259
259
nipype_ns ["in_port" ]: key ,
260
- nipype_ns ["value" ]: safe_encode (val )}
260
+ pm . PROV ["value" ]: safe_encode (val )}
261
261
id = get_attr_id (in_attr )
262
262
self .g .entity (id , in_attr )
263
263
self .g .hadMember (input_collection , id )
@@ -276,7 +276,7 @@ def add_results(self, results):
276
276
for idx , (key , val ) in enumerate (sorted (outputs .items ())):
277
277
out_attr = {pm .PROV ["label" ]: key ,
278
278
nipype_ns ["out_port" ]: key ,
279
- nipype_ns ["value" ]: safe_encode (val )}
279
+ pm . PROV ["value" ]: safe_encode (val )}
280
280
id = get_attr_id (out_attr )
281
281
self .g .entity (id , out_attr )
282
282
self .g .hadMember (output_collection , id )
0 commit comments