Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pippy_app.py
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2008-03-15 22:35:01 (GMT)
committer Chris Ball <cjb@laptop.org>2008-03-15 22:35:01 (GMT)
commit5978af6e8ed91dca8b1a7acec0b492cfed7f9634 (patch)
tree81c8063e64bbc80d71c63c472a595c55d9276496 /pippy_app.py
parentee69feed52cbd92db55564a7f3e7f627fdea1692 (diff)
chmod() bugfix from Joshua Minor.
Diffstat (limited to 'pippy_app.py')
-rw-r--r--pippy_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pippy_app.py b/pippy_app.py
index d9fa330..b311c0a 100644
--- a/pippy_app.py
+++ b/pippy_app.py
@@ -351,7 +351,7 @@ class PippyActivity(ViewSourceActivity):
self._logger.debug("Couldn't find bundle: %s"%str(bundle_file))
return # something went wrong.
# hand off to journal
- os.chmod(app_temp, 755)
+ os.chmod(app_temp, 0755)
jobject = datastore.create()
metadata = {
'title': '%s Bundle' % title,