On 11/7/07, Florian Lindner <[EMAIL PROTECTED]> wrote: > (r"^newComment/$", django.views.generic.create_update.create_object, > dict(model=BlogComment))
Just as I suspected. You need quotes around 'django.views.generic.create_update.create_object' here. It's looking for an object named 'django' which isn't currently defined in this module. -Gul --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

