summaryrefslogtreecommitdiffstats
path: root/gen_known_issues.py
diff options
context:
space:
mode:
authorMiruna Paun <Miruna.Paun@enea.com>2017-04-14 15:12:00 +0200
committerMiruna Paun <Miruna.Paun@enea.com>2017-04-14 15:12:00 +0200
commita35c2a961de2619baa94a47ddd5448cd6eeda798 (patch)
tree7c6751f3e55c6f44edfaf7551bc1c19c7b4a13bb /gen_known_issues.py
parent74c97c90a9fa10ebad46ec00061da9e2578b33a7 (diff)
downloaddoc-enea-nfv-a35c2a961de2619baa94a47ddd5448cd6eeda798.tar.gz
Uploading the first draft of ENFV relnotes
COSNOSCR-316 More updates to come closer to the release. Those should be done by the dev team. Signed-off-by: Miruna Paun <Miruna.Paun@enea.com>
Diffstat (limited to 'gen_known_issues.py')
-rw-r--r--gen_known_issues.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gen_known_issues.py b/gen_known_issues.py
index 6d3f6e2..54bbdf5 100644
--- a/gen_known_issues.py
+++ b/gen_known_issues.py
@@ -18,7 +18,7 @@ import json, re, datetime
18import time 18import time
19 19
20try: 20try:
21 with open("book-enea-linux-release-info/doc/jiraissues_override.xml") as f: 21 with open("book-enea-nfv-release-info/doc/jiraissues_override.xml") as f:
22 print f.read(), 22 print f.read(),
23 23
24 exit(0) 24 exit(0)
@@ -53,10 +53,10 @@ def jira_query(query):
53 tmp = jd.decode(tmp[-1]) 53 tmp = jd.decode(tmp[-1])
54 return tmp["issues"] 54 return tmp["issues"]
55 55
56conditions = ("project=LXCR", 56conditions = ("project=COSNOSCR",
57 "issueType=bug", 57 "issueType=bug",
58 "resolution=Unresolved", 58 "resolution=Unresolved",
59 'affectedversion="Enea Linux 6"' 59 'affectedversion="Cosnos 1.0"'
60 ) 60 )
61 61
62bugs = [] 62bugs = []