prefer term dir over folder

This commit is contained in:
2014-10-30 22:50:30 +01:00
parent 83f981ce3d
commit 830a559f4d
3 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
class Config(object):
DEBUG=True
class Config:
DEBUG = True
class Development(Config):
STORAGE_PATH='/Volumes/PROJECTS/storage'
UPLOAD_FOLDER = '/Volumes/PROJECTS/storage_staging'
STORAGE_PATH = "/Volumes/PROJECTS/storage"
UPLOAD_FOLDER = "/Volumes/PROJECTS/storage_staging"
ALLOWED_EXTENSIONS = {'txt', 'mp4', 'png', 'jpg', 'jpeg', 'gif', 'blend', 'zip'}