From 0d3e028e524ed830f74ad82b2ac5e12b7a23ce07 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 31 May 2010 21:18:14 -0300 Subject: [PATCH 1/1] Honour umask when creating the comments directory --- blitiri.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blitiri.cgi b/blitiri.cgi index abff92a..0ffc81a 100755 --- a/blitiri.cgi +++ b/blitiri.cgi @@ -781,7 +781,7 @@ class CommentDB (object): # if comments were enabled after the article was added, we # will need to create the directory if not os.path.exists(self.path): - os.mkdir(self.path, 0755) + os.mkdir(self.path, 0777) self.comments = [] self.load(article) -- 2.43.0