You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by rl...@apache.org on 2021/04/18 16:06:09 UTC

svn commit: r1888910 - /comdev/nearby_people/run_wsgi.py

Author: rlenferink
Date: Sun Apr 18 16:06:09 2021
New Revision: 1888910

URL: http://svn.apache.org/viewvc?rev=1888910&view=rev
Log:
Use django 1.5 instead of 1.11

Modified:
    comdev/nearby_people/run_wsgi.py

Modified: comdev/nearby_people/run_wsgi.py
URL: http://svn.apache.org/viewvc/comdev/nearby_people/run_wsgi.py?rev=1888910&r1=1888909&r2=1888910&view=diff
==============================================================================
--- comdev/nearby_people/run_wsgi.py (original)
+++ comdev/nearby_people/run_wsgi.py Sun Apr 18 16:06:09 2021
@@ -18,7 +18,7 @@ import sys, os
 # The path needs to contain the installed directory (i.e. the directory with
 #  this file in it), the parent of the installed directory, wherever your
 #  Django install is, plus the system path
-sys.path = [ '/var/www/apps/', '/var/www/apps/nearby_people/', '/var/www/apps/Django-1.11.29' ] + sys.path
+sys.path = [ '/var/www/apps/', '/var/www/apps/nearby_people/', '/var/www/apps/django-1.5' ] + sys.path
 
 # Tell the Django WSGI handler which settings file to bootstap from
 os.environ["DJANGO_SETTINGS_MODULE"] = "nearby_people.settings"