Explorar o código

Fix path on apps directory in wsgi file

Colin Powell %!s(int64=5) %!d(string=hai) anos
pai
achega
13d63f7b4c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      wsgi.py

+ 1 - 1
wsgi.py

@@ -7,7 +7,7 @@ execfile(activate_this, dict(__file__=activate_this))
 os.environ["DJANGO_SETTINGS_MODULE"] = "pbp_com.settings"
 
 BASE_DIR = os.path.dirname(os.path.dirname(__file__))
-sys.path.insert(0, os.path.join(BASE_DIR, "apps"))
+sys.path.insert(0, os.path.join(BASE_DIR, "pbp_com/apps"))
 
 import django.core.handlers.wsgi