thanks for your reply, iv been reading the documentation, and wrote
the code, but theres one thing im having trouble with, i included the
signal connection in my models.py, and passed the model that was there
to the handler function so that it can be tied to that specific model,
like so

class foo(models.Model):
    #model code here

def handler(sender=foo,  **kwargs):
    #code to be executed when model foo saved

 post_save.connect(handler)

now,  in the code to be executed i instantiate a class that imports
the model foo, but django wont import it

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

Reply via email to