Skip to content

Commit 833d27f

Browse files
authored
Merge pull request #27 from thomas0306/master
Add strip in exclude logic for #24
2 parents 6698d1b + 1be6345 commit 833d27f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

jira-dependency-graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def process_link(fields, issue_key, link):
124124
if includes not in linked_issue_key:
125125
return
126126

127-
if link_type in excludes:
127+
if link_type.strip() in excludes:
128128
return linked_issue_key, None
129129

130130
arrow = ' => ' if direction == 'outward' else ' <= '

0 commit comments

Comments
 (0)