remove print statement in logo.py
[mygpo.git] / mygpo / core / signals.py
blob9bdc1876e6db86643cf4f3bf2430c799cd87d018
1 import django.dispatch
3 # indicates that an incomplete object has been loaded from the database
4 # the object needs to be updated from its source (eg the feed)
5 incomplete_obj = django.dispatch.Signal()
8 # indicates that a podcast was subscribed or unsubscribed
9 # ``sender`` will equal the user. Additionally the parameters ``user`` and
10 # ``subscribed`` will be provided
11 subscription_changed = django.dispatch.Signal()