Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'model.py')
-rw-r--r--model.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/model.py b/model.py
index 816d5de..81e3c11 100644
--- a/model.py
+++ b/model.py
@@ -18,7 +18,7 @@
#
import libxml2
-from os import environ, makedirs
+from os import environ, makedirs, chmod
from os.path import join, basename, dirname, isdir, split, normpath
import logging
import random
@@ -124,7 +124,7 @@ class Model(object):
def read(self, game_file):
tmp_root = join(environ['SUGAR_ACTIVITY_ROOT'], 'instance')
temp_folder = tempfile.mkdtemp(dir=tmp_root)
-
+ chmod(temp_folder,0777)
self.data['key'] = basename(game_file)
self.data['game_file'] = game_file
self.data['path'] = temp_folder