Browse Source

Fixed wrong URL in celery/models error message. Closes #180. Thanks to crucialfelix

Ask Solem 14 years ago
parent
commit
e4d8a01e90
1 changed files with 6 additions and 2 deletions
  1. 6 2
      celery/models.py

+ 6 - 2
celery/models.py

@@ -21,7 +21,11 @@ ERROR: celery can't be added to INSTALLED_APPS anymore
 
 Please install the django-celery package and add:
 
-    INSTALLED_APPS = "djcelery"
+    import djcelery
+    djcelery.setup_loader()
+    INSTALLED_APPS = ("djcelery", )
+
+to settings.py.
 
 To install django-celery you can do one of the following:
 
@@ -44,7 +48,7 @@ To install django-celery you can do one of the following:
 
 If you weren't aware of this already you should read the
 Celery 2.0 Changelog as well:
-    http://github.com/ask/celery/tree/djangofree/Changelog
+    http://celeryproject.org/docs/changelog.html
 
 """)