Skip to content

Commit 917bc90

Browse files
committed
fix un-prefixed format identifiers
1 parent 954314c commit 917bc90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwl_utils/graph_split.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def rewrite_id(entry):
5252
entry['id'] = entry['id'][len(this_id)+1:]
5353
return entry
5454
document[key][:] = [rewrite_id(entry) for entry in value]
55-
elif key in ('source', 'scatter', 'items'):
55+
elif key in ('source', 'scatter', 'items', "format"):
5656
if isinstance(value, Text) and value.startswith('#') and '/' in value:
5757
referrant_file, sub = value[1:].split('/', 1)
5858
if referrant_file == doc_id:

0 commit comments

Comments
 (0)