two-scoops-of-django-3.x icon indicating copy to clipboard operation
two-scoops-of-django-3.x copied to clipboard

Reference to django.utils.six

Open edward-matthews opened this issue 3 years ago • 1 comments

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

edward-matthews avatar Jul 30 '21 10:07 edward-matthews

Whoops! Nice catch. Changed to from io import StringIO

pydanny avatar Jul 30 '21 15:07 pydanny