windows
[iramuteq] / configparser.py
index 5a52260..11baaaf 100644 (file)
@@ -713,7 +713,7 @@ class RawConfigParser(MutableMapping):
         read_ok = []
         for filename in filenames:
             try:
-                with open(filename, encoding=encoding) as fp:
+                with open(filename, encoding='utf8') as fp:
                     self._read(fp, filename)
             except IOError:
                 continue