fix reading config file in python2

This commit is contained in:
Alan Hamlett 2014-12-26 18:18:52 -06:00
parent 69f9bbdc78
commit dd61a4f5f4

View file

@ -60,11 +60,11 @@ def createConfigFile():
""" """
configFile = os.path.join(os.path.expanduser('~'), '.wakatime.cfg') configFile = os.path.join(os.path.expanduser('~'), '.wakatime.cfg')
try: try:
with open(configFile, 'r', encoding='utf-8') as fh: with open(configFile) as fh:
pass pass
except IOError: except IOError:
try: try:
with open(configFile, 'w', encoding='utf-8') as fh: with open(configFile, 'w') as fh:
fh.write("[settings]\n") fh.write("[settings]\n")
fh.write("debug = false\n") fh.write("debug = false\n")
fh.write("hidefilenames = false\n") fh.write("hidefilenames = false\n")