mirror of
https://github.com/beetbox/beets.git
synced 2026-01-03 14:32:55 +01:00
on OS X, prioritize ~/.config for migration
This commit is contained in:
parent
e893926aae
commit
9b4c7f77f4
1 changed files with 1 additions and 1 deletions
|
|
@ -484,7 +484,7 @@ def config_dirs():
|
|||
"""Returns a list of user configuration directories to be searched.
|
||||
"""
|
||||
if platform.system() == 'Darwin':
|
||||
paths = [MAC_DIR, UNIX_DIR_FALLBACK]
|
||||
paths = [UNIX_DIR_FALLBACK, MAC_DIR]
|
||||
elif platform.system() == 'Windows':
|
||||
if WINDOWS_DIR_VAR in os.environ:
|
||||
paths = [os.environ[WINDOWS_DIR_VAR]]
|
||||
|
|
|
|||
Loading…
Reference in a new issue