Browse Source

Merge pull request #462 from dolugen/master

Abstract task does not inherit from object
Ask Solem Hoel 13 years ago
parent
commit
1f41f31f23
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/userguide/tasks.rst

+ 1 - 1
docs/userguide/tasks.rst

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