From: Leandro Lucarella Date: Tue, 1 Jun 2010 00:18:14 +0000 (-0300) Subject: Honour umask when creating the comments directory X-Git-Url: https://git.llucax.com/software/blitiri.git/commitdiff_plain/0d3e028e524ed830f74ad82b2ac5e12b7a23ce07?ds=inline Honour umask when creating the comments directory --- 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)