Hi,
I had a working website for about the last 2 weeks.  I was using a test 
database (Postgres).  I am also using SVN for my code and have tried to revert 
back many versions and I still get these new errors.

The error first appeared as datetime has no Attribute 'None' for a line in my 
views.py
user = User.objects.create_user(c.registration_id, c.email, 
request.POST['txtPassword'])

The error was from in django/contrib/auth/models.py
now = datetime.datetime.now()

No datetime?? But the module imports the datetime module at the top.  This is 
django code and I made no changes to the code.

So I added the following just for testing (just in case I had re-defined 
datetime):
try:
            now = datetime.datetime.now()
        except:
            import datetime
            now = datetime.datetime.now()

But now in the same module I get a new error:

TypeError: 'NoneType' object is not callable for 
salt = get_hexdigest(algo, str(random.random()), str(random.random()))[:5]

This is crazy!  I can not understand what has happened!

I'm hoping someone understands this better than I do!

Just running 
python manage.py runserver
I get a 500.  

I'm on openSUSE 11.3, python 2.6.5, django 1.2.3 (was on 1.2.1).  I really 
need help!

Johnf

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to