settings: fixed typo on media.

Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
rascencio 2015-05-31 04:52:53 -06:00
parent 1fa008a999
commit 24c263811a
2 changed files with 2 additions and 2 deletions

View File

@ -260,8 +260,9 @@ STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
# Media files.
MEDIA_ROOT = os.path.abspath(os.path.join(BASE_DIR, '..', 'media'))
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = APP_ROOT_ENDPOINT + 'media/'
FILE_UPLOAD_PERMISSIONS = 0o644
# Templates confs
TEMPLATE_DIRS = (

View File

@ -8,7 +8,6 @@ import filer.fields.image
class Migration(migrations.Migration):
dependencies = [
('filer', '0002_auto_20150522_0450'),
('ungleich', '0001_initial'),
]