diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-08-09 15:16:47 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-08-09 15:16:47 +0000 |
| commit | be5350f2d5faaa737fd05baacf907910ca2e9f09 (patch) | |
| tree | 4225b763d18959e4a2466d2ee4d5250601829ac1 | |
| parent | 88639e9b2ade62a0818e5446fbc205bf8ace4025 (diff) | |
Fixed a couple imports in django.core.files.storage. Fixes #8188.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8262 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/core/files/storage.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/django/core/files/storage.py b/django/core/files/storage.py index 351cc03bb5..a0732e9003 100644 --- a/django/core/files/storage.py +++ b/django/core/files/storage.py @@ -3,10 +3,11 @@ import urlparse from django.conf import settings from django.core.exceptions import ImproperlyConfigured, SuspiciousOperation -from django.utils.encoding import force_unicode, smart_str -from django.utils.text import force_unicode, get_valid_filename +from django.utils.encoding import force_unicode +from django.utils.text import get_valid_filename from django.utils._os import safe_join from django.core.files import locks, File +from django.core.files.move import file_move_safe __all__ = ('Storage', 'FileSystemStorage', 'DefaultStorage', 'default_storage') |
