Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2008-07-08 12:59:40 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-07-08 12:59:40 (GMT)
commit4ab761506cbdffb778e52d0dfc2418d9232b95d9 (patch)
tree1cb2da6d0c78584411992c9911d96040d5b6b96e /scripts
parenta7bfc264cb4fa6c8d76ad6cff02e60b3ea4b8977 (diff)
better layout for testcases in release reports
Diffstat (limited to 'scripts')
-rw-r--r--scripts/report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/report.py b/scripts/report.py
index ae15994..1ea6619 100644
--- a/scripts/report.py
+++ b/scripts/report.py
@@ -47,7 +47,7 @@ class TextWriter(object):
def write_testcases(self, testcases):
for number, testcase in testcases:
- self.out.write('#%s\n\n%s\n' % (number, testcase))
+ self.out.write('#%s - %s\n\n\n' % (number, testcase))
class ReleaseReport(object):
def __init__(self, config, release):