From 1ce401551229c6bd5ea4b4cee486d72ac4e5b5e2 Mon Sep 17 00:00:00 2001
From: Nikos Kouremenos <kourem@gmail.com>
Date: Fri, 2 Sep 2005 21:32:23 +0000
Subject: [PATCH] [stephan k.] decode path for config

---
 src/common/optparser.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/common/optparser.py b/src/common/optparser.py
index 20c40ce749..0dc670e6cf 100644
--- a/src/common/optparser.py
+++ b/src/common/optparser.py
@@ -17,6 +17,7 @@
 ##
 
 import os
+import sys
 import locale
 from common import gajim
 from common import i18n
@@ -85,6 +86,8 @@ def write_line(self, fd, opt, parents, value):
 	
 	def write(self):
 		(base_dir, filename) = os.path.split(self.__filename)
+		base_dir = base_dir.decode(sys.getfilesystemencoding())
+		filename = filename.decode(sys.getfilesystemencoding())
 		self.__tempfile = os.path.join(base_dir, '.' + filename)
 		try:
 			fd = open(self.__tempfile, 'w')
-- 
GitLab