From ae10b2772b30a2fa6a8c8de22a20d8a940fa6a95 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 21 Feb 2011 14:16:29 +0000 Subject: [PATCH] Fixed #15369 -- Added missing import in _os module. Thanks, jonash. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15611 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/_os.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/utils/_os.py b/django/utils/_os.py index 706268a74d..f7b279db24 100644 --- a/django/utils/_os.py +++ b/django/utils/_os.py @@ -1,4 +1,5 @@ import os +import stat from os.path import join, normcase, normpath, abspath, isabs, sep from django.utils.encoding import force_unicode