我有这个简单的视图功能:
def location(request,locname,lid):
try:
location = Location.objects.get(id=lid)
return render_to_response('location.html',{'location':location},context_instance=RequestContext(request))
except Location.DoesNotExist:
return render_to_response('404.html',{},context_instance=RequestContext(request)) #<-- error line
但我IndexError: string index out of range
只在生产服务器上。
错误行在最后一行。
我在这里做错了什么?