jazzband / wagtailmenus

An app to help you manage and render menus in your Wagtail projects more effectively
MIT License
398 stars 138 forks source link

Depricated Django package - from django.utils import six #354

Closed WalterMccan closed 4 years ago

WalterMccan commented 4 years ago

As the title says. The new version of Django (3) no longer supports this module.

To fix the issue one has to change the line from django.utils import six in menu.py to import six.

You may have to install it with pip install six first.