mirror of
https://github.com/django/django.git
synced 2025-07-18 18:55:18 +00:00
Replaced some smart_xxx by force_xxx equivalent
smart_str/smart_text should only be used when a potential lazy string should be preserved in the result of the function call.
This commit is contained in:
parent
36df198e4b
commit
ae88e73fa6
17 changed files with 56 additions and 56 deletions
|
@ -8,7 +8,7 @@ from django.core.files.base import File
|
|||
from django.core.files.storage import default_storage
|
||||
from django.core.files.images import ImageFile
|
||||
from django.db.models import signals
|
||||
from django.utils.encoding import force_text, smart_str
|
||||
from django.utils.encoding import force_str, force_text
|
||||
from django.utils import six
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
@ -280,7 +280,7 @@ class FileField(Field):
|
|||
setattr(cls, self.name, self.descriptor_class(self))
|
||||
|
||||
def get_directory_name(self):
|
||||
return os.path.normpath(force_text(datetime.datetime.now().strftime(smart_str(self.upload_to))))
|
||||
return os.path.normpath(force_text(datetime.datetime.now().strftime(force_str(self.upload_to))))
|
||||
|
||||
def get_filename(self, filename):
|
||||
return os.path.normpath(self.storage.get_valid_name(os.path.basename(filename)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue