localsettings are no longer main settings
authorJan Szejko <j-sz@o2.pl>
Mon, 7 Mar 2016 08:17:34 +0000 (09:17 +0100)
committerJan Szejko <j-sz@o2.pl>
Mon, 7 Mar 2016 08:17:34 +0000 (09:17 +0100)
manage.py
redakcja/wsgi.py

index dea56f5..29702c0 100755 (executable)
--- a/manage.py
+++ b/manage.py
@@ -10,7 +10,7 @@ sys.path = [
 ] + sys.path
 
 if __name__ == "__main__":
-    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "redakcja.localsettings")
+    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "redakcja.settings")
 
     from django.core.management import execute_from_command_line
 
index cd69a92..62743d6 100755 (executable)
@@ -13,7 +13,7 @@ sys.path = [
 ] + sys.path
 
 
-os.environ.setdefault("DJANGO_SETTINGS_MODULE", "redakcja.localsettings")
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "redakcja.settings")
 
 # This application object is used by the development server
 # as well as any WSGI server configured to use this file.