X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1c4c468783e5f380324c29ebc3b2c452da8cc2a0..dbf3690fd7b8d30f603f3ef333290c22f4e5d63f:/redakcja/context_processors.py diff --git a/redakcja/context_processors.py b/redakcja/context_processors.py index feba9e9f..aae919e6 100644 --- a/redakcja/context_processors.py +++ b/redakcja/context_processors.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +import sys def settings(request): @@ -20,4 +21,5 @@ def settings(request): 'DEBUG': settings.DEBUG, 'RAVEN_CONFIG': getattr(settings, 'RAVEN_CONFIG'), 'APP_VERSION': VERSION, + 'FS_ENC': sys.getfilesystemencoding(), }