1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #1150: Error when uploading image attachments with Unicode names under Python 2

This commit is contained in:
Jeremy Stretch
2017-05-09 17:12:45 -04:00
parent 0fb12bcc9c
commit 8e333757f9

View File

@ -383,7 +383,7 @@ def image_upload(instance, filename):
elif instance.name:
filename = instance.name
return '{}{}_{}_{}'.format(path, instance.content_type.name, instance.object_id, filename)
return u'{}{}_{}_{}'.format(path, instance.content_type.name, instance.object_id, filename)
@python_2_unicode_compatible