Re: hmm django not very verbose on error messages

2007-05-24 Thread Malcolm Tredinnick
On Thu, 2007-05-24 at 20:50 +, rogerdpack wrote: > So it seems that if I run python manage.py syncdb > and it errs > it says > django.contrib.admin: name 'User' is not defined > django.contrib.auth: name 'User' is not defined > > turns out thta in django/contrib/auth/models.py on line 200 it

hmm django not very verbose on error messages

2007-05-24 Thread rogerdpack
So it seems that if I run python manage.py syncdb and it errs it says django.contrib.admin: name 'User' is not defined django.contrib.auth: name 'User' is not defined turns out thta in django/contrib/auth/models.py on line 200 it uses "User" in error (it was my own fault==a typo). Anyway anyone