Hi, I'm trying fetch the data of commentor name in the recently updated issue. I'm saving the updated issues in a list, when I'm passing the list in the query it gives me : AttributeError: type object 'PropertyHolder' has no attribute 'comment', even though there is comment present on the issue.
Can anyone please help?
Below is the code
def issue_tested(project_name, updated_from, updated_to):
print project_name, updated_from, updated_to
total_update=[]
total_update = jira.search_issues('project = %s AND updated >= %s and updated <= %s' % (project_name, updated_from, updated_to))
total_updated_length = len(total_update)
print total_update
print total_updated_length
print total_update[2]
issue = jira.issue(total_update[2])
print issue
print issue.fields.comment.comments[0].author.name
I'm getting the issue , but it is not getting passed in the print issue.fields.comment.comments[0].author.name. However when I directly assign the issue like : issue = jira.issue('Issue_name'), it gives me the author name. But while passing it as an object shows Attribute errror.
PS: I don't want to use Script-Runner as it as paid now, can you please give me any solution within python?
Thanks!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.