8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-24 20:33:11 +00:00

[Printer] Handles accentted filenames

This commit is contained in:
Maxime Bombar 2018-10-15 16:35:20 +02:00 committed by root
parent 5aa0dd867e
commit 4acb118268
2 changed files with 4 additions and 1 deletions

View file

@ -19,3 +19,4 @@ graphviz
git git
poppler-utils poppler-utils
texlive-extra-utils texlive-extra-utils
python3-unidecode

View file

@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
import subprocess import subprocess
import os import os
import unidecode
def user_printing_path(instance, filename): def user_printing_path(instance, filename):
""" """
@ -7,7 +9,7 @@ def user_printing_path(instance, filename):
Currently MEDIA_ROOT/printings/user_<id>/<filename> Currently MEDIA_ROOT/printings/user_<id>/<filename>
""" """
# File will be uploaded to MEDIA_ROOT/printings/user_<id>/<filename> # File will be uploaded to MEDIA_ROOT/printings/user_<id>/<filename>
return 'printings/user_{0}/{1}'.format(instance.user.id, filename) return 'printings/user_{0}/{1}'.format(instance.user.id, unidecode.unidecode(filename))