Replace all instances of unicode only handling to use force_text.

Replace all __unicode__ methods to __str__ and the
@python_2_unicode_compatible decorator.
Replace all instance of smart_str, smart_unicode, force_uncode
with force_text.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2017-07-05 15:03:24 -04:00
parent 95157460cb
commit 6c6ca38374
47 changed files with 150 additions and 106 deletions

View File

@@ -3,6 +3,7 @@ from __future__ import unicode_literals
import logging
from django import forms
from django.utils.encoding import force_text
from django.utils.translation import ugettext
from django.utils.translation import ugettext_lazy as _
@@ -59,7 +60,7 @@ class StagingUploadForm(UploadBaseForm):
try:
self.fields['staging_file_id'].choices = [
(staging_file.encoded_filename, unicode(staging_file)) for staging_file in self.source.get_files()
(staging_file.encoded_filename, force_text(staging_file)) for staging_file in self.source.get_files()
]
except Exception as exception:
logger.error('exception: %s', exception)