Hi, What is the best place to register a signal handler so that the registration happens when the app is first initialized into django? I have an app that needs to listen to signals generated by another app and fire off celery tasks in response. I've tried placing the registration code into the app's __init__.py, but since I have other reusable code there, doing so created cyclical references when importing modules. Is there another location within the app's code that is guaranteed to be picked up when django is being initialized (like an django app level init rather than python level module init)?
Thanks Dmitry -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

