diff options
author | Arun Raghavan <ford_prefect@gentoo.org> | 2009-04-18 11:18:44 +0530 |
---|---|---|
committer | Arun Raghavan <ford_prefect@gentoo.org> | 2009-04-18 11:18:44 +0530 |
commit | 66b1c32cd5b300a0578da072ffd68b5fabb0cd6a (patch) | |
tree | eca660537331fc38ede6f55268049fdfdf3c4635 | |
parent | Allow passing in a single bug to check on the command line (diff) | |
download | gard-66b1c32cd5b300a0578da072ffd68b5fabb0cd6a.tar.gz gard-66b1c32cd5b300a0578da072ffd68b5fabb0cd6a.tar.bz2 gard-66b1c32cd5b300a0578da072ffd68b5fabb0cd6a.zip |
Fix releases timestamp check (missing '/')
-rw-r--r-- | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |