I\'m working with Django signals, but they seem to be received twice, even if emitted once. Here\'s the code I\'m working with (it\'s a simple wrapper to use Uploadify with Dja
you can check "created" argument in your function that you are connecting with signal which returns True and False respectively.
def task_feedback_status_handler(sender, instance, created, **kwargs): do something post_save.connect(task_feedback_status_handler, sender=Feedback)