Skip to content

Commit

Permalink
Fixed a couple imports in django.core.files.storage. Fixes #8188.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8262 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jacobian committed Aug 9, 2008
1 parent 88639e9 commit be5350f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions django/core/files/storage.py
Expand Up @@ -3,10 +3,11 @@


from django.conf import settings from django.conf import settings
from django.core.exceptions import ImproperlyConfigured, SuspiciousOperation from django.core.exceptions import ImproperlyConfigured, SuspiciousOperation
from django.utils.encoding import force_unicode, smart_str from django.utils.encoding import force_unicode
from django.utils.text import force_unicode, get_valid_filename from django.utils.text import get_valid_filename
from django.utils._os import safe_join from django.utils._os import safe_join
from django.core.files import locks, File from django.core.files import locks, File
from django.core.files.move import file_move_safe


__all__ = ('Storage', 'FileSystemStorage', 'DefaultStorage', 'default_storage') __all__ = ('Storage', 'FileSystemStorage', 'DefaultStorage', 'default_storage')


Expand Down

0 comments on commit be5350f

Please sign in to comment.