Skip to content

Commit

Permalink
Use user_config_dir for config_file
Browse files Browse the repository at this point in the history
This is more in line with what appdirs intends.

Fixes #3
  • Loading branch information
JonathonReinhart committed Mar 31, 2020
1 parent 9a41787 commit e579331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion art/_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
_appdirs = appdirs.AppDirs('art')
artifacts_file = 'artifacts.yml'
artifacts_lock_file = 'artifacts.lock.yml'
config_file = os.path.join(_appdirs.user_data_dir, 'config.yml')
config_file = os.path.join(_appdirs.user_config_dir, 'config.yml')
cache_dir = _appdirs.user_cache_dir


Expand Down

0 comments on commit e579331

Please sign in to comment.