Re: AttributeError: 'Settings' object has no attribute 'SATIC_ROOT'

2017-09-21 Thread Lachlan Musicman
The problem's right there in the error. there is no satic_root. In urls.py *urlpatterns += static(settings.STATIC_URL, document_root=settings.SATIC_ROOT)* Should read *urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)* Cheers L. -- You received this

AttributeError: 'Settings' object has no attribute 'SATIC_ROOT'

2017-09-21 Thread Ian Likono
tatic(settings.STATIC_URL, document_root=settings.SATIC_ROOT) File "/root/Desktop/tryTen/local/lib/python2.7/site-packages/django/conf/__init__.py", line 57, in __getattr__ val = getattr(self._wrapped, name) AttributeError: 'Settings' object has no attribute 'SATIC_ROOT' *Here *