ValueError at / admin / zinnia / entry / add / in Zinnia?

When adding an entry using the admin site in a Zinnia app in Django, I get the following error:

ValueError at /admin/zinnia/entry/add/

too many values to unpack (expected 2)

      

Does anyone know how to solve this?

+3


source to share


2 answers


Make sure you are using the correct version of the dependencies for Zinnia.



+1


source


There is a problem with categories and how it is displayed when adding or editing a post if you are using Django 1.11. The fastest workaround is to downgrade Django to 1.10.



@weather api suggested looking into dependencies, but setup.py doesn't even mention the Django package, so Django 1.11 will be installed by default.

+2


source







All Articles