Skip to content

Commit

Permalink
Add user config home to get_xdg_config_dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel McKnight committed Feb 18, 2022
1 parent 67f1625 commit 762f845
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ovos_utils/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

def get_xdg_config_dirs(folder=None):
folder = folder or get_xdg_base()
paths = xdg_config_dirs()
paths.append(xdg_config_home())
return [join(path, folder) for path in xdg_config_dirs() if isdir(join(path, folder))]


Expand Down

0 comments on commit 762f845

Please sign in to comment.