From: Radek Czajka Date: Tue, 27 May 2014 12:44:31 +0000 (+0200) Subject: Fix for a unicode fix. X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/21c8ba33691b168fbc69ab7f663d1b6fb99808d9?ds=inline;hp=3f961f9924a7b458e8ebb00b7135f013d52ce8d2 Fix for a unicode fix. --- diff --git a/apps/fileupload/views.py b/apps/fileupload/views.py index e4baf026..25112e6b 100644 --- a/apps/fileupload/views.py +++ b/apps/fileupload/views.py @@ -42,7 +42,7 @@ class UploadView(FormView): def get_directory(self): """Directory relative to MEDIA_ROOT. Must end with a slash.""" - return self.kwargs['path'].encode('utf-8') + return self.kwargs['path'] def breadcrumbs(self): """List of tuples (name, url) or just (name,) for breadcrumbs. @@ -78,7 +78,7 @@ class UploadView(FormView): filename = smart_bytes(filename) path = os.path.abspath(os.path.join( settings.MEDIA_ROOT, - self.get_directory(), + smart_bytes(self.get_directory()), filename)) if not path.startswith(settings.MEDIA_ROOT): raise Http404