X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1c4c468783e5f380324c29ebc3b2c452da8cc2a0..a5be56afdde4dc586602386433d5d8f285bc3cd0:/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(), }