diff options
author | 2005-09-04 16:14:25 +0000 | |
---|---|---|
committer | 2005-09-04 16:14:25 +0000 | |
commit | b21940b18582ee11c9b6a0ea18186c2ab1e5d1f9 (patch) | |
tree | c2107f894ea1e769c316998199904e7b89ac5f92 /www-apps/pyblosxom-plugins/files | |
parent | Fixed digests (diff) | |
download | overlay-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.py | 2 |
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']) |