print actual location of config file in error message when not able to read from it
This commit is contained in:
parent
1800f93d8d
commit
670141413e
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ def parseConfigFile(configFile):
|
|||
return None
|
||||
except IOError:
|
||||
if not os.path.isfile(configFile):
|
||||
print('Error: Could not read from config file ~/.wakatime.cfg')
|
||||
print(u('Error: Could not read from config file {0}').format(configFile))
|
||||
return configs
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue