I am using Python with GitPython
to read various commits of the Lucene
project. Those commits contain messages like
LUCENE-4797: enable doclint html verification
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1658040 13f79535-47bb-0310-9956-ffa450edef68
Now, with that commit message, I want to decide if that specific commit was a bug-fix or not. I want to do this using the Jira API (in python).
I tried doing something like this, but that doesn't work.
jira = JIRA({'server': 'https://issues.apache.org/jira/'})
// what do I have to search for ?
issue = jira.issue('13f79535-47bb-0310-9956-ffa450edef');
How can I do this properly ?