From 5978af6e8ed91dca8b1a7acec0b492cfed7f9634 Mon Sep 17 00:00:00 2001 From: Chris Ball Date: Sat, 15 Mar 2008 22:35:01 +0000 Subject: chmod() bugfix from Joshua Minor. --- (limited to 'pippy_app.py') 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, -- cgit v0.9.1