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
1 changed files with 2 additions and 2 deletions

View File

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