I am getting two signals fired for each event. I have read the fix at
http://code.djangoproject.com/wiki/Signals#Helppost_saveseemstobeemittedtwiceforeachsave
but have found it rather confusing. How do I make it work with the
signals that are defined in django-paypal?
The suggested use is:
signals.post_save.connect(my_handler, MyModel,
dispatch_uid="path.to.this.module")
The current Django-paypal is:
subscription_signup.connect(sub_signup)
Not sure what all I need to add to my connect to make it work. I take
it "sub_signup" is "MyModel", but what is "my_handler"? Also,
dispatch_uid do I put a datetime in there so that it is unique?