Can't update fields in jira-python

Paul Nelson

Unable to update fields for an issue in Jira-python. I can read the fields fine, but don't see them updated. Example:

issue.update(fields={'description':'a comment'})

Have also tried:

issue.update({'description':'a comment'})

and 100 other things, other fields, both custom and standard.

If I try to read back my changes immediately with:

 issue.fields.description

it doesn't show any change. There are no error messages, and no return codes. I have proper administrative privileges, etc. Any clues appreciated.

danipj

Try

issue.update(description="ASFASFASD")

According to the documentation, it should works. https://jira-python.readthedocs.org/en/latest/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related