Hi django users,
I'd like to write a decorator for connecting functions like such:

def connect(sender, signal):
  def _connect(fn):
    dispatcher.connect(fn, signal=signal, sender=sender)
  return _connect

...

@connect(Account, signals.post_save)
def reset_account_balance(sender, instance, signal):
  instance.balance = 0
  instance.save()

This does not seem to work... is there a flaw in this implementation?
Thanks for any help.


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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