Skip to content

Commit

Permalink
Fix 'uknown' typo in model exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Mar 12, 2018
1 parent 513b6a5 commit 332d79e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4075,7 +4075,7 @@ def add_output(self, workflow_output, step, output_object):
output_assoc.dataset_collection = output_object
self.output_dataset_collections.append(output_assoc)
else:
raise Exception("Uknown output type encountered")
raise Exception("Unknown output type encountered")

def to_dict(self, view='collection', value_mapper=None, step_details=False):
rval = super(WorkflowInvocation, self).to_dict(view=view, value_mapper=value_mapper)
Expand Down Expand Up @@ -4199,7 +4199,7 @@ def add_output(self, output_name, output_object):
output_assoc.output_name = output_name
self.output_dataset_collections.append(output_assoc)
else:
raise Exception("Uknown output type encountered")
raise Exception("Unknown output type encountered")

@property
def jobs(self):
Expand Down

0 comments on commit 332d79e

Please sign in to comment.