Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

trace.py 323B

123456789101112
  1. """This module has moved to celery.app.trace."""
  2. from __future__ import absolute_import
  3. import sys
  4. from celery.app import trace
  5. from celery.utils import warn_deprecated
  6. warn_deprecated('celery.task.trace', removal='3.2',
  7. alternative='Please use celery.app.trace instead.')
  8. sys.modules[__name__] = trace