You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Retrieval of comments or an individual comment for a jira currently does not support expand parameter.
For instance if you want to retrieve the HTML renderedBody of a comment you cannot do this with jira-python, you can only do it directly via the rest api by providing the "expand=renderedBody" parameter at the end of the rest call.
Solution is quite trivial just adding expand parameter to the two client.py methods
jira/client.py : def comments()
jira/client.py : def comment()
I have a working diff, ready to go.
Version Information
Python Interpreter: 3.6
jira-python: 2.0.0
OS: Oracle Linux 7.8
The text was updated successfully, but these errors were encountered:
Retrieval of comments or an individual comment for a jira currently does not support expand parameter.
For instance if you want to retrieve the HTML renderedBody of a comment you cannot do this with jira-python, you can only do it directly via the rest api by providing the "expand=renderedBody" parameter at the end of the rest call.
Solution is quite trivial just adding expand parameter to the two client.py methods
jira/client.py : def comments()
jira/client.py : def comment()
I have a working diff, ready to go.
Version Information
Python Interpreter: 3.6
jira-python: 2.0.0
OS: Oracle Linux 7.8
The text was updated successfully, but these errors were encountered: