I have Jira-Python code that is capable of finding the Issues ID in a particular project.
query = jira.search_issues(
jql_str="project=NAME AND fixVersion=ABCD AND resolution=Unresolved"
)
for i in query:
print(i.id)
in this code "fixVersions=ABCD". My version name is containing " - " in it. For example
fixVersion=abcd - /Drive
the " - " is throwing me an error. is there any way to use it?
Got it rectified, if anyone else looking into this question. "\" escape character helped using it and the use of "/" was also thowing error. it was replacesd with "\\u002f"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.