Author: jacob
Date: 2008-07-12 15:43:52 -0500 (Sat, 12 Jul 2008)
New Revision: 7908

Modified:
   django/trunk/AUTHORS
   django/trunk/django/core/files/uploadedfile.py
Log:
Fixed #7675: corrected TemporaryUploadedFile.temporary_file_path. Thanks, 
Florian Apolloner.


Modified: django/trunk/AUTHORS
===================================================================
--- django/trunk/AUTHORS        2008-07-12 20:43:38 UTC (rev 7907)
+++ django/trunk/AUTHORS        2008-07-12 20:43:52 UTC (rev 7908)
@@ -52,7 +52,7 @@
     [EMAIL PROTECTED]
     Fabrice Aneche <[EMAIL PROTECTED]>
     [EMAIL PROTECTED]
-    Florian Apolloner
+    Florian Apolloner <[EMAIL PROTECTED]>
     arien <[EMAIL PROTECTED]>
     David Ascher <http://ascher.ca/>
     Jökull Sólberg Auðunsson <[EMAIL PROTECTED]>

Modified: django/trunk/django/core/files/uploadedfile.py
===================================================================
--- django/trunk/django/core/files/uploadedfile.py      2008-07-12 20:43:38 UTC 
(rev 7907)
+++ django/trunk/django/core/files/uploadedfile.py      2008-07-12 20:43:52 UTC 
(rev 7908)
@@ -193,7 +193,7 @@
         """
         Returns the full path of this file.
         """
-        return self.name
+        return self._file.name
     
     # Most methods on this object get proxied to NamedTemporaryFile.
     # We can't directly subclass because NamedTemporaryFile is actually a


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to