summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Wrobel <wrobel@gentoo.org>2005-09-04 16:14:25 +0000
committerGunnar Wrobel <wrobel@gentoo.org>2005-09-04 16:14:25 +0000
commitb21940b18582ee11c9b6a0ea18186c2ab1e5d1f9 (patch)
treec2107f894ea1e769c316998199904e7b89ac5f92 /www-apps/pyblosxom-plugins/files
parentFixed digests (diff)
downloadoverlay-b21940b18582ee11c9b6a0ea18186c2ab1e5d1f9.tar.gz
overlay-b21940b18582ee11c9b6a0ea18186c2ab1e5d1f9.tar.bz2
overlay-b21940b18582ee11c9b6a0ea18186c2ab1e5d1f9.zip
Fixed comments plugin
svn path=/; revision=356
Diffstat (limited to 'www-apps/pyblosxom-plugins/files')
-rw-r--r--www-apps/pyblosxom-plugins/files/comments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/www-apps/pyblosxom-plugins/files/comments.py b/www-apps/pyblosxom-plugins/files/comments.py
index f53db38..0747137 100644
--- a/www-apps/pyblosxom-plugins/files/comments.py
+++ b/www-apps/pyblosxom-plugins/files/comments.py
@@ -306,7 +306,7 @@ def writeComment(request, config, data, comment, encoding):
cdir = os.path.join(config['comment_dir'],entry['absolute_path'])
cdir = os.path.normpath(cdir)
if not os.path.isdir(cdir):
- os.makedirs(cdir)
+ os.makedirs(cdir, mode = 0775)
cfn = os.path.join(cdir,entry['fn']+"-"+comment['pubDate']+"."+config['comment_draft_ext'])