Fixed #7675: corrected TemporaryUploadedFile.temporary_file_path. Thanks, Florian Apolloner.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7908 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e63f8bf655
commit
476d5f2c0d
2
AUTHORS
2
AUTHORS
|
@ -52,7 +52,7 @@ answer newbie questions, and generally made Django that much better:
|
||||||
andy@jadedplanet.net
|
andy@jadedplanet.net
|
||||||
Fabrice Aneche <akh@nobugware.com>
|
Fabrice Aneche <akh@nobugware.com>
|
||||||
ant9000@netwise.it
|
ant9000@netwise.it
|
||||||
Florian Apolloner
|
Florian Apolloner <florian@apolloner.eu>
|
||||||
arien <regexbot@gmail.com>
|
arien <regexbot@gmail.com>
|
||||||
David Ascher <http://ascher.ca/>
|
David Ascher <http://ascher.ca/>
|
||||||
Jökull Sólberg Auðunsson <jokullsolberg@gmail.com>
|
Jökull Sólberg Auðunsson <jokullsolberg@gmail.com>
|
||||||
|
|
|
@ -193,7 +193,7 @@ class TemporaryUploadedFile(UploadedFile):
|
||||||
"""
|
"""
|
||||||
Returns the full path of this file.
|
Returns the full path of this file.
|
||||||
"""
|
"""
|
||||||
return self.name
|
return self._file.name
|
||||||
|
|
||||||
# Most methods on this object get proxied to NamedTemporaryFile.
|
# Most methods on this object get proxied to NamedTemporaryFile.
|
||||||
# We can't directly subclass because NamedTemporaryFile is actually a
|
# We can't directly subclass because NamedTemporaryFile is actually a
|
||||||
|
|
Loading…
Reference in New Issue