Skip to content

Commit

Permalink
bug fix for non array output
Browse files Browse the repository at this point in the history
  • Loading branch information
briandoconnor committed Dec 23, 2016
1 parent 77d6ede commit 6f93e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DockstoreRunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def map_outputs(self):
file_map = {}
if isinstance(value, dict):
if parsed_json[key]['class'] == 'File':
self.fill_in_file_dict(file_map, parsed_json)
self.fill_in_file_dict(file_map, parsed_json[key])
result.append(file_map)
file_map = {}
elif isinstance(value, list):
Expand Down

0 comments on commit 6f93e6c

Please sign in to comment.