editor update
[redakcja.git] / redakcja / context_processors.py
index aec6df7..aae919e 100644 (file)
@@ -1,4 +1,6 @@
-# -*- coding: utf-8
+# -*- coding: utf-8 -*-
+import sys
+
 
 def settings(request):
     from django.conf import settings
@@ -7,7 +9,7 @@ def settings(request):
         import subprocess
         process = subprocess.Popen(["git", "show", "--oneline"], stdout=subprocess.PIPE)
         data, _err = process.communicate()
-        # get app version 
+        # get app version
         VERSION = data.splitlines()[0].split()[0]
     else:
         VERSION = ''
@@ -19,4 +21,5 @@ def settings(request):
         'DEBUG': settings.DEBUG,
         'RAVEN_CONFIG': getattr(settings, 'RAVEN_CONFIG'),
         'APP_VERSION': VERSION,
+        'FS_ENC': sys.getfilesystemencoding(),
     }