获取TypeError:'Module'对象在celery任务装饰器上不可调用

时间:2012-06-02 17:26:40

标签: django celery

尝试使用django的芹菜我遇到了@task装饰器的问题。这是在Windows 7上运行。

在我的celerytest.tasks模块中,我有以下代码

from celery import task

@task
def add(x,y):
    return x + y

从命令提示符我运行:

python manage.py shell

尝试从shell导入我的模块:

from celerytest.tasks import add

我收到以下错误:

>>> from celerytest.tasks import add
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "d:\...\celerytest\tasks.py", line 8, in <module>
   @task
TypeError: 'module' object is not callable

我试着用谷歌搜索了很长时间,但似乎我是世界上唯一一个遇到这个问题的人。

1 个答案:

答案 0 :(得分:10)

好吧,我正在阅读2.6.0 rc3的文档,但安装了2.5.3。

http://ask.github.com/celery/django/first-steps-with-django.html

使用这样的导入时:

from celery.task import task
一切似乎都有效。