Fixes #145 - Syntax Error on Python 3.2

This correctly reimplement pull #168
This commit is contained in:
Venelin Stoykov 2015-04-22 22:56:40 +03:00
parent e8b9df963f
commit 6e8a0cc4d1
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import string
from django.core.files.storage import default_storage
from django.template.defaultfilters import slugify
from django.utils.encoding import force_text
class NotAnImageException(Exception):
@ -32,7 +33,7 @@ def get_thumb_filename(file_name):
Generate thumb filename by adding _thumb to end of
filename before . (if present)
"""
return unicode('{0}_thumb{1}').format(*os.path.splitext(file_name))
return force_text('{0}_thumb{1}').format(*os.path.splitext(file_name))
def get_image_format(extension):