Skip to content

Commit 4be82d4

Browse files
authored
Annoying typo
1 parent 69e39c2 commit 4be82d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,13 +382,13 @@ def __init__(self, toolpath_object, **kwargs):
382382
self.inputs_record_schema = schema_salad.schema.make_valid_avro(self.inputs_record_schema, {}, set())
383383
avro.schema.make_avsc_object(self.inputs_record_schema, self.names)
384384
except avro.schema.SchemaParseException as e:
385-
raise validate.ValidationException(u"Got error `%s` while prcoessing inputs of %s:\n%s" % (str(e), self.tool["id"], json.dumps(self.inputs_record_schema, indent=4)))
385+
raise validate.ValidationException(u"Got error `%s` while processing inputs of %s:\n%s" % (str(e), self.tool["id"], json.dumps(self.inputs_record_schema, indent=4)))
386386

387387
try:
388388
self.outputs_record_schema = schema_salad.schema.make_valid_avro(self.outputs_record_schema, {}, set())
389389
avro.schema.make_avsc_object(self.outputs_record_schema, self.names)
390390
except avro.schema.SchemaParseException as e:
391-
raise validate.ValidationException(u"Got error `%s` while prcoessing outputs of %s:\n%s" % (str(e), self.tool["id"], json.dumps(self.outputs_record_schema, indent=4)))
391+
raise validate.ValidationException(u"Got error `%s` while processing outputs of %s:\n%s" % (str(e), self.tool["id"], json.dumps(self.outputs_record_schema, indent=4)))
392392

393393

394394
def _init_job(self, joborder, **kwargs):

0 commit comments

Comments
 (0)