[Fixed]-Django response download png and tiff files

1👍

Looks to me like this is a file name error not really related to the file format. What happens if you rename said file?

You can also run the file name through an encoder and ignore all non-utf8 characters. For example:

>>> u'aあä'.encode('ascii', 'ignore')
'a'

Leave a comment