comparison pytouhou/options.py @ 590:e15672733c93

Switch to Python 3.x instead of 2.7.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Tue, 30 Sep 2014 17:14:24 +0200
parents 0768122da817
children 244c99c568c8
comparison
equal deleted inserted replaced
589:0768122da817 590:e15672733c93
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ## GNU General Public License for more details. 12 ## GNU General Public License for more details.
13 ## 13 ##
14 14
15 import os 15 import os
16 from ConfigParser import RawConfigParser, NoOptionError 16 from configparser import RawConfigParser, NoOptionError
17 17
18 from pytouhou.utils.xdg import load_config_paths, save_config_path 18 from pytouhou.utils.xdg import load_config_paths, save_config_path
19 19
20 20
21 class Options(object): 21 class Options(object):