Browse Source

minor doc update (Sphinx syntax)

fredj 14 years ago
parent
commit
295cf6c802
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/tutorials/clickcounter.rst

+ 1 - 1
docs/tutorials/clickcounter.rst

@@ -218,7 +218,7 @@ Processing the clicks every 30 minutes is easy using celery periodic tasks.
     class ProcessClicksTask(PeriodicTask):
         run_every = timedelta(minutes=30)
 
-        def run(self, \*\*kwargs):
+        def run(self, **kwargs):
             process_clicks()
 
 We subclass from :class:`celery.task.base.PeriodicTask`, set the ``run_every``