Browse Source

Added URL to the "pickle exceptions" discussion on Reddit in the comments

Ask Solem 16 years ago
parent
commit
14b1db9159
1 changed files with 2 additions and 1 deletions
  1. 2 1
      celery/tests/test_pickle.py

+ 2 - 1
celery/tests/test_pickle.py

@@ -1,6 +1,5 @@
 import unittest
 import pickle
-from django.http import Http404
 
 class RegularException(Exception):
     pass
@@ -13,6 +12,8 @@ class ArgOverrideException(Exception):
 
 
 class TestPickle(unittest.TestCase):
+    # See: http://www.reddit.com/r/django/comments/8gdwi/
+    #      celery_distributed_task_queue_for_django/c097hr1
 
     def test_pickle_regular_exception(self):