django执行celery操作时,报错如下:
TypeError: can only concatenate list (not "tuple") to list
还有同类型的错误
TypeError: can only concatenate tuple (not "NoneType") to tuple
都可以试试这个解决方法:
找到python安装库的位置,找到该文件 \lib\site-packages\djcelery\management\commands\celery.py。在文件中注释掉如下代码:
14 # options = (CeleryCommand.options +
15 # base.get_options() +
16 # base.preload_options)
网友评论