Kaydet (Commit) ae953a8c authored tarafından Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss

Fixed #8673: fixed a missing import in `django.core.files.move`.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8720 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 5c31c685
......@@ -11,6 +11,7 @@ from django.core.files import locks
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment