Ver Fonte

210712 backend image path bug fix

yukyo há 3 anos atrás
pai
commit
a777c03d65
1 ficheiros alterados com 4 adições e 0 exclusões
  1. 4 0
      backstage/upload/routes.py

+ 4 - 0
backstage/upload/routes.py

@@ -62,6 +62,8 @@ def upload_post(filepath):
                 os.makedirs(wpath)
             if not os.path.exists(owpath):
                 os.makedirs(owpath)
+            if not os.path.exists(sitepath):
+                os.makedirs(sitepath)
             #file.save(fullpath)
             image_object = Image.open(file)
             image_object.save(owpath+owfname, oimgtypeName)
@@ -122,6 +124,8 @@ def get_image(filepath):
         os.makedirs(wpath)
     if not os.path.exists(owpath):
         os.makedirs(owpath)
+    if not os.path.exists(sitepath):
+        os.makedirs(sitepath)
     image_object = Image.open(requests.get(request.get_json()['url'],stream=True).raw)
     image_object.save(owpath+owfname, oimgtypeName)
     if image_object.size[0] > 1000: