attributeerror 3a 27module 27 object has no attribute 27lru cache 27

Solutions on MaxInterview for attributeerror 3a 27module 27 object has no attribute 27lru cache 27 by the best coders in the world

showing results for - "attributeerror 3a 27module 27 object has no attribute 27lru cache 27"
Oscar
30 Jan 2017
1import os, sys
2
3
4sys.path.append('/home/santosh/Documents/project/Reports/Reports')
5sys.path.append('/home/santosh/Documents/project/Reports')
6
7
8sys.path.append('/home/santosh/Documents/project/project/lib/python3.5/site-packages')
9sys.path.append('/home/santosh/Documents/project/project/lib/python3.5')
10sys.path.append('/home/santosh/Documents/project/project/bin')
11
12
13
14from django.core.wsgi import get_wsgi_application
15
16os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Reports.settings")
17
18application = get_wsgi_application()