diff options
author | Thomas Lundström <thomas.lundstrom@enea.com> | 2016-06-13 13:23:43 +0200 |
---|---|---|
committer | Thomas Lundström <thomas.lundstrom@enea.com> | 2016-06-13 13:23:43 +0200 |
commit | 57a3bdf7afd8418647f57b6e1c5abeebb60bd989 (patch) | |
tree | 568a2760cc8f2f29c9cd301ad06486a113fe240a /doc/gen_known_issues.py | |
parent | 7d0727ce60c2c8079c81f76509293ad9c7d0d358 (diff) | |
download | el_manifests-standard-57a3bdf7afd8418647f57b6e1c5abeebb60bd989.tar.gz |
Removed trailing spaces in generated file
Diffstat (limited to 'doc/gen_known_issues.py')
-rwxr-xr-x | doc/gen_known_issues.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/gen_known_issues.py b/doc/gen_known_issues.py index ae65f7b..6b8ca8c 100755 --- a/doc/gen_known_issues.py +++ b/doc/gen_known_issues.py | |||
@@ -42,38 +42,38 @@ print '<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"' | |||
42 | print '"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">' | 42 | print '"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">' |
43 | print '<section id="relinfo-extracted-from-jira">' | 43 | print '<section id="relinfo-extracted-from-jira">' |
44 | print ' <title>Extracted from Jira</title>' | 44 | print ' <title>Extracted from Jira</title>' |
45 | print '' | 45 | |
46 | print ' <para>' | 46 | print ' <para>' |
47 | print ' This section lists open bugs in Jira. Extracted at %s.' % time_str | 47 | print ' This section lists open bugs in Jira. Extracted at %s.' % time_str |
48 | print ' </para>' | 48 | print ' </para>' |
49 | print '' | 49 | |
50 | print ' <remark>Jira query: (project = "Linux CR" ' | 50 | print ' <remark>Jira query: (project = "Linux CR"' |
51 | print ' and issuetype = Bug ' | 51 | print ' and issuetype = Bug' |
52 | print ' and affectedVersion = "Enea Linux 6" ' | 52 | print ' and affectedVersion = "Enea Linux 6"' |
53 | print ' and resolution = Unresolved)</remark>' | 53 | print ' and resolution = Unresolved)</remark>' |
54 | print '' | 54 | |
55 | print ' <informaltable>' | 55 | print ' <informaltable>' |
56 | print ' <tgroup cols="2">' | 56 | print ' <tgroup cols="2">' |
57 | print ' <colspec colwidth="6*" colname="c1"/>' | 57 | print ' <colspec colwidth="6*" colname="c1"/>' |
58 | print '' | 58 | |
59 | print ' <colspec align="center" colwidth="1*" colname="c2"/>' | 59 | print ' <colspec align="center" colwidth="1*" colname="c2"/>' |
60 | print '' | 60 | |
61 | print ' <thead>' | 61 | print ' <thead>' |
62 | print ' <row>' | 62 | print ' <row>' |
63 | print ' <entry align="center">Summary</entry>' | 63 | print ' <entry align="center">Summary</entry>' |
64 | print '' | 64 | |
65 | print ' <entry>Enea Ref</entry>' | 65 | print ' <entry>Enea Ref</entry>' |
66 | print ' </row>' | 66 | print ' </row>' |
67 | print ' </thead>' | 67 | print ' </thead>' |
68 | print '' | 68 | |
69 | print ' <tbody>', | 69 | print ' <tbody>', |
70 | 70 | ||
71 | if bugs: | 71 | if bugs: |
72 | for bug in sorted(bugs): | 72 | for bug in sorted(bugs): |
73 | print '' | 73 | |
74 | print ' <row>' | 74 | print ' <row>' |
75 | print ' <entry>%s</entry>' % bug[1] | 75 | print ' <entry>%s</entry>' % bug[1] |
76 | print '' | 76 | |
77 | print ' <entry>%s</entry>' % bug[0] | 77 | print ' <entry>%s</entry>' % bug[0] |
78 | print ' </row>' | 78 | print ' </row>' |
79 | 79 | ||