Re: enable admin gives error

2010-11-05 Thread jt
Thank you very much Russ, the missing comma was indeed the problem. Having corrected my syntax it runs fine. :D jt On Nov 5, 12:25 am, Russell Keith-Magee wrote: > On Fri, Nov 5, 2010 at 11:59 AM, jt wrote: > > Hi, > > I'm just starting out.  Things ran fine until I uncomment out: > > (r'^admin

Re: enable admin gives error

2010-11-04 Thread Russell Keith-Magee
On Fri, Nov 5, 2010 at 11:59 AM, jt wrote: > Hi, > I'm just starting out.  Things ran fine until I uncomment out: > (r'^admin/', include(admin.site.urls)) > in my urls.py file.  When I access my local site from the development > server. I get: > * Exception Type: TypeError > * Exception Value: 'tu

enable admin gives error

2010-11-04 Thread jt
Hi, I'm just starting out. Things ran fine until I uncomment out: (r'^admin/', include(admin.site.urls)) in my urls.py file. When I access my local site from the development server. I get: * Exception Type: TypeError * Exception Value: 'tuple' object is not callable. My urls.py file contains: fro