summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <ford_prefect@gentoo.org>2009-04-18 11:18:44 +0530
committerArun Raghavan <ford_prefect@gentoo.org>2009-04-18 11:18:44 +0530
commit66b1c32cd5b300a0578da072ffd68b5fabb0cd6a (patch)
treeeca660537331fc38ede6f55268049fdfdf3c4635
parentAllow passing in a single bug to check on the command line (diff)
downloadgard-66b1c32cd5b300a0578da072ffd68b5fabb0cd6a.tar.gz
gard-66b1c32cd5b300a0578da072ffd68b5fabb0cd6a.tar.bz2
gard-66b1c32cd5b300a0578da072ffd68b5fabb0cd6a.zip
Fix releases timestamp check (missing '/')
-rw-r--r--check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 810a401..0eff258 100644
--- a/check.py
+++ b/check.py
@@ -189,7 +189,7 @@ class ReleasesCheck(GardCheck):
# Verify that releases/.test/THIS-FILE-SHOULD-NOT-BE-PUBLIC.txt
# is not world readable
- if self.check_file_exists(self.url+'releases/.test/THIS-FILE-SHOULD-NOT-BE-PUBLIC.txt'):
+ if self.check_file_exists(self.url+'/releases/.test/THIS-FILE-SHOULD-NOT-BE-PUBLIC.txt'):
self.log_error('Releases permission check failed on %s' % self.url)
ret = False