From 00a9de91cf1a40cd0c8e172d9cd6806868c021e3 Mon Sep 17 00:00:00 2001 From: Marcio Mazza Date: Mon, 27 Jul 2015 20:32:44 -0300 Subject: [PATCH] Fix general qa on settings --- sapl/settings.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sapl/settings.py b/sapl/settings.py index 176b4ee2e..8e3d80061 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -9,8 +9,6 @@ https://docs.djangoproject.com/en/1.8/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.8/ref/settings/ """ - -import os from unipath import Path BASE_DIR = Path(__file__).ancestor(2) @@ -119,9 +117,7 @@ LOCALE_PATHS = ( # https://docs.djangoproject.com/en/1.8/howto/static-files/ STATIC_URL = '/static/' STATIC_ROOT = BASE_DIR.child("collected_static") -STATICFILES_DIRS = ( - BASE_DIR.child("static"), -) +STATICFILES_DIRS = (BASE_DIR.child("static"),) STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder',