#30811: Django throws 'UnicodeEncodeError' when using Cyrillic symbols to
override
field upload_to.
-------------------------------------+-------------------------------------
Reporter: persik-dev | Owner: persik-
| dev
Type: Bug | Status: assigned
Component: Database layer | Version: 2.2
(models, ORM) |
Severity: Normal | Resolution:
Keywords: UnicodeEncodeError, | Triage Stage:
Cyrillic, upload_to, File, | Unreviewed
FileField |
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Description changed by persik-dev:
Old description:
> So, I have a ''Book'' model, that contains some fields. But most
> important are:
> **'title' as 'CharField'**
> **'pdf', 'epub', 'fb2' as 'FileField'**
> **'image' as 'ImageField'**
> we will return to they in just a second...
> My ''Book'' model also has overrided ''clean'' method. In that method I
> assign my ''title'' field value as ''upload_to'' value.
>
> {{{
> uploading_files = [
> self.image,
> self.pdf,
> self.fb2,
> self.epub
> ]
> for file_ in uploading_files:
> file_.field.upload_to = self.title
> }}}
> Here is where bug hided. If I set ''title'' value to "Колобок", for
> example, it throws me an ''UnicodeEncodeError''. This thing happends only
> when i first create model.
> If I firstly will set ''title'' value as "Kolobok", and later rename it
> to "Колобок", I have no error.
>
> ----
>
> I already some kind of "fixed" this.
> Endpoint of thrown exception was
> **...\django\db\models\fields\files.py**. After fork from your Github, I
> followed this path, and find function that throws that error, that
> function was ''generate_filename'' in ''FileField'' class, line 305.
> After I added small correct...
>
> {{{
> try:
> dirname = datetime.datetime.now().strftime(self.upload_to)
> except UnicodeEncodeError:
> dirname = self.upload_to
> }}}
>
> ... all works fine now, and I can use Cyrillic symbols as my ''title''
> and folder name in ''upload_to'' attribute.
New description:
So, I have a ''Book'' model, that contains some fields. But most important
are:
**'title' as 'CharField'**
**'pdf', 'epub', 'fb2' as 'FileField'**
**'image' as 'ImageField'**
we will return to they in just a second...
My ''Book'' model also has overrided ''clean'' method. In that method I
assign my ''title'' field value as ''upload_to'' value.
{{{
uploading_files = [
self.image,
self.pdf,
self.fb2,
self.epub
]
for file_ in uploading_files:
file_.field.upload_to = self.title
}}}
Here is where bug hided. If I set ''title'' value to "Колобок", for
example, it throws me an ''UnicodeEncodeError''. This thing happends only
when i first create model.
If I firstly will set ''title'' value as "Kolobok", and later rename it to
"Колобок", I have no error.
----
I already some kind of "fixed" this.
Endpoint of thrown exception was **...\django\db\models\fields\files.py**.
After fork from your Github, I followed this path, and find function that
throws that error, that function was ''generate_filename'' in
''FileField'' class, line 305. After I added small correct...
{{{
try:
dirname = datetime.datetime.now().strftime(self.upload_to)
except UnicodeEncodeError:
dirname = self.upload_to
}}}
... all works fine now, and I can use Cyrillic symbols as my ''title'' and
folder name in ''upload_to'' attribute.
----
For comfort, here is my [https://github.com/persik-dev/LibraLive Github]
with all ''my'' Django code in it.
--
--
Ticket URL: <https://code.djangoproject.com/ticket/30811#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/068.2a73ba75448d45248d503cd28bf4ace2%40djangoproject.com.