[Django]-Django Migration Error 'TypeError: sequence item 1: expected a bytes-like object, str found' on mysql-connector-python cursor_cent.py file

4👍

This appears to be a bug with mysql-connector-python==8.0.27 and can be avoided by rolling back one version:

pip install mysql-connector-python<=8.0.26
👤Jay

-1👍

Do you have created and defined the two mandatory files views.py and urls.py for your app?

👤fabio

Leave a comment