diff --git a/src/scripts/relnotes.py b/src/scripts/relnotes.py index ae7780ee..cc540fad 100644 --- a/src/scripts/relnotes.py +++ b/src/scripts/relnotes.py @@ -83,7 +83,7 @@ def sanitize_log(in_log): def get_jira_doc(issue): """ Get the XML document from JIRA for a specified issue. """ - xml = os.popen("curl -s 'https://issues.cloudera.org/si/jira.issueviews:" \ + xml = os.popen("curl -s 'https://issues.apache.org/jira/si/jira.issueviews:" \ + "issue-xml/%s/%s.xml?field=key&field=type&field=parent'" % (issue, issue)).read() return ElementTree.fromstring(xml)