Create binary files for images

This commit is contained in:
Ruud
2012-01-14 22:05:34 +01:00
parent e9094d4c6c
commit 6ec420db86
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -69,12 +69,12 @@ class Plugin(object):
d = os.path.join(self.plugin_path, 'static')
return send_from_directory(d, filename)
def createFile(self, path, content):
def createFile(self, path, content, binary = False):
self.makeDir(os.path.dirname(path))
try:
f = open(path, 'w')
f = open(path, 'w' if not binary else 'wb')
f.write(content)
f.close()
except Exception, e:
+1 -1
View File
@@ -41,7 +41,7 @@ class FileManager(Plugin):
dest = os.path.join(Env.get('cache_dir'), '%s.%s' % (md5(url), getExt(url)))
if overwrite or not os.path.isfile(dest):
self.createFile(dest, filedata)
self.createFile(dest, filedata, binary = True)
return dest