Re: 'str' object not callable

2010-10-26 Thread bruno desthuilliers
On 26 oct, 17:45, John Yeukhon Wong wrote: > This is part of my views > > [[[code]]]  from mysite.views > > def site_root(request): >     return HttpResponse("This is the site root") > def hello(request): >     return HttpResponse("Hello World") > > [[endcode]] > > My URLConf > [[code]] > from dja

Re: 'str' object not callable

2009-07-18 Thread grant neale
Yes it's the URL. you are probably calling an incomplete view or wrong template name. Grant On 18 Jul 2009, at 09:29, adelaide_mike wrote: > > Hi > Can some kind soul tell me what, in principle, this means: > > 'str' object not callable > > ? It seems to be associated with urls.py > > Newbi