Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jira/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2929,7 +2929,7 @@ def create_issue_link(
Response
"""
# let's see if we have the right issue link 'type' and fix it if needed
issue_link_types = self.issue_link_types()
issue_link_types = list(map(lambda x: x.name, self.issue_link_types()))

if type not in issue_link_types:
self.log.warning(
Expand Down
Loading