From 66b1c32cd5b300a0578da072ffd68b5fabb0cd6a Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Sat, 18 Apr 2009 11:18:44 +0530 Subject: Fix releases timestamp check (missing '/') --- check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3-65-gdbad