two-scoops-of-django-3.x
two-scoops-of-django-3.x copied to clipboard
Reference to django.utils.six
Location within the Book
- Chapter or Appendix: 13 Form Fundamentals
- Section: 13.1
- Subsection: Examples 13.1 & 13.2
Description
six is no longer available as part of django.utils as of Django v3.0
from django.utils.six import StringIO
Possible Solutions
According to the Django 3.0 release notes "Remove usage of this vendored library or switch to six."
Your full name so we can provide accurate credit within the book
Edward Matthews
Whoops! Nice catch. Changed to from io import StringIO