Commit 965340cbc95f79fe6adef3dc75d56f359f3445a6

Authored by Sergio Oliveira
1 parent 48342abe

Taking media out of static dir

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/colab/custom_settings.py
... ... @@ -232,7 +232,7 @@ STATICFILES_DIRS = (
232 232 )
233 233  
234 234 STATIC_ROOT = os.path.join(BASE_DIR, '..', 'www', 'static')
235   -MEDIA_ROOT = os.path.join(BASE_DIR, '..', 'www', 'static', 'media')
  235 +MEDIA_ROOT = os.path.join(BASE_DIR, '..', 'www', 'media')
236 236  
237 237 TEMPLATE_DIRS = (
238 238 os.path.join(BASE_DIR, 'templates'),
... ...