up vote 1 down vote favorite
share [g+] share [fb]

Exception Type: TypeError at /robots.txt

Exception Value: 'str' object is not callable

What gives?

Views:

ROBOTS_PATH = os.path.join(CURRENT_PATH, 'robots.txt')


def robots(request):
""" view for robots.txt file """
return HttpResponse(open(ROBOTS_PATH).read(), 'text/plain')

Settings:

CURRENT_PATH = os.path.abspath(os.path.dirname(__file__).decode('utf-8'))

URLs:

(r'^robots\.txt$', 'robots'),
link|improve this question

79% accept rate
1  
You can't seriously expect us to answer this question without any information about your code, can you? We need a traceback and probably a relevant excerpt of the program. – David Zaslavsky Sep 4 '10 at 1:19
Added the code. been a long day. stupid neighbors had me up till 3am then woke me up in the morning. – pythondjango Sep 4 '10 at 2:11
feedback

1 Answer

up vote 2 down vote accepted

Try:

from appname.views import robots
(r'^robots\.txt$', robots), 

Or:

(r'^robots\.txt$', 'projectname.appname.views.robots'),

Django can't figure out where your 'robots' function is.

link|improve this answer
Had to remove the quotations. Dumb error. You're the man. – pythondjango Sep 4 '10 at 7:02
feedback

Your Answer

 
or
required, but never shown

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