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-09 09:04:54 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-07-09 09:04:54 (GMT)
commitff4bd56b04a7811d70726d7c15cbb1b493eaf6a1 (patch)
tree5a4885c813b53511204d9dae3415d43e63ecf49c /scripts
parentf0afa4d2b1b5dfcb80b1bc038f66d941e9aa8d0e (diff)
Fix that all the tickets for the TestCase can be found
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 e0af61e..566c768 100644
--- a/scripts/report.py
+++ b/scripts/report.py
@@ -126,7 +126,7 @@ class ReleaseReport(object):
marker = '|TestCase|'
i = comment.find(marker)
- if i > 0:
+ if i >= 0:
i += len(marker)
self._testcases.append([n, comment[i:].strip()])