AttributeError: ‘CeleryCommand‘ object has no attribute ‘preload_options‘

今天遇到一个非常奇怪的问题,百度和谷歌也搜不到,大佬分分钟帮我解决问题。
在做django的定时任务开发时
运行:python manage.py celery worker -l info和python manager.py celery worker -l info报错:
AttributeError: ‘CeleryCommand’ object has no attribute ‘preload_options’
大佬告诉我是源码问题,
错误原因是preload_options一个是前面是tuple类型,后面是list类型
错误:
AttributeError: ‘CeleryCommand‘ object has no attribute ‘preload_options‘
解决办法:
AttributeError: ‘CeleryCommand‘ object has no attribute ‘preload_options‘
说明:
此时我用的django-celery版本是3.3.0
我查看了3.3.1版本该文件的内容,与3.3.0有出入,我试着用3.3.1版本运行,发现这个版本与我django版本没配对上,运行报了其他错误,所以其他版本我不知道有没有这个问题,各位大佬可以去试试。