Browse Source

Abstract task does not inherit from object.

dolugen 14 years ago
parent
commit
9882004215
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/userguide/tasks.rst

+ 1 - 1
docs/userguide/tasks.rst

@@ -724,7 +724,7 @@ base class for new task types.
 
 .. code-block:: python
 
-    class DebugTask(object):
+    class DebugTask(Task):
         abstract = True
 
         def after_return(self, \*args, \*\*kwargs):