From 17eb99eea718191b619277754bf15e6a7554d916 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Fri, 3 Sep 2010 18:01:43 +0000 Subject: python 3 only. Fixes all EncodingError bugs :)))) --- src/config.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/config.py') diff --git a/src/config.py b/src/config.py index 73674711..3756ef56 100644 --- a/src/config.py +++ b/src/config.py @@ -1,5 +1,3 @@ -# -*- coding:utf-8 -*- -# # Copyright 2009 chickenzilla # Copyright 2010 Le Coz Florent # @@ -22,7 +20,7 @@ Defines the global config instance, used to get or set (and save) values from/to the config file """ -from ConfigParser import RawConfigParser, NoOptionError +from configparser import RawConfigParser, NoOptionError from os import environ, makedirs, path from shutil import copy2 try: -- cgit v1.2.3