I would like to print this value for debugging purposes. How can I do it?

print TEMPLATE_DIRS doesn't work print settings.TEMPLATE_DIRS doesn't work.

link|improve this question

65% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Did you import the settings first?

$steve ./manage.py shell

Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05)

In [1]: from django.conf import settings
In [2]: settings.TEMPLATE_DIRS 
Out [2] ('/Volumes/HDD/usr/local/django/mytestproject/templates',)
link|improve this answer
thanks, that is the solution. – Deonomo Jan 16 at 20:05
Also, since you seem knowledgeable -- any chance you could glance at this question: stackoverflow.com/questions/8885107/… ? – Deonomo Jan 16 at 20:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.