python jira return the content of a filter -
i'm new in jira python , want have list tickets obtained existing filter.
i tried jira.filter(id) instead receiving list issue, received name of filter. using jira.search_issue working, because filter can change other guys need take in account changes of filter content. ideas? thanks!
use filter id in jira.search_issue.
for in jira.search_issues('filter=25471'): print i.key
Comments
Post a Comment