Skip to content

Commit

Permalink
Fix sanitized_issue_data helper of jira issue handler (#16032)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameerpathan111 authored Aug 22, 2024
1 parent 4a60549 commit a606046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robottelo/utils/issue_handlers/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def sanitized_issue_data(issue, out_fields):
out_fields {list} -- The list of fields for which data to be retrieved from jira issue
"""
return {
field: eval(mapped_response_fields[field].format(obj_name='issue')) for field in out_fields
field: eval(mapped_response_fields[field].format(obj_name=issue)) for field in out_fields
}


Expand Down

0 comments on commit a606046

Please sign in to comment.