Add file name assignment to File.object.create in export_simple
This commit is contained in:
parent
e7a1e5a440
commit
4ad1982d60
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ class KRPanoConverter:
|
||||||
cur = url[:-5] + i + url[-4:]
|
cur = url[:-5] + i + url[-4:]
|
||||||
res = HTTPRequest(cur).open()
|
res = HTTPRequest(cur).open()
|
||||||
assert res.getcode() == 200
|
assert res.getcode() == 200
|
||||||
fo = ContentFile(res.read())
|
fo = ContentFile(res.read(), name="{i}.jpg")
|
||||||
file = File.objects.create(conversion=self.conversion, file=fo, mime_type="image/jpeg")
|
file = File.objects.create(conversion=self.conversion, file=fo, mime_type="image/jpeg")
|
||||||
output += [file]
|
output += [file]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue