Author: jacob
Date: 2008-08-29 15:00:55 -0500 (Fri, 29 Aug 2008)
New Revision: 8720
Modified:
django/trunk/django/core/files/move.py
Log:
Fixed #8673: fixed a missing import in `django.core.files.move`.
Modified: django/trunk/django/core/files/move.py
===================================================================
--- django/trunk/django/core/files/move.py 2008-08-29 19:50:22 UTC (rev
8719)
+++ django/trunk/django/core/files/move.py 2008-08-29 20:00:55 UTC (rev
8720)
@@ -11,6 +11,7 @@
try:
from shutil import copystat
except ImportError:
+ import stat
def copystat(src, dst):
"""Copy all stat info (mode bits, atime and mtime) from src to dst"""
st = os.stat(src)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---