Skip to content

Commit 72ad949

Browse files
committed
Bind config to AppData/Local on specific Windows machine
1 parent a9e98c6 commit 72ad949

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aslm/config/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
from pathlib import Path
55

66
def get_configuration_paths():
7-
# Establish a base directory in AppData/.ASLM for Windows or ~/.ASLM for Mac and Linux
7+
# Establish a base directory in AppData/Local/.ASLM for Windows or ~/.ASLM for Mac and Linux
88
if platform.system() == 'Windows':
9-
base_directory = os.getenv('APPDATA')
9+
base_directory = os.getenv('LOCALAPPDATA')
1010
else:
1111
base_directory = os.getenv('HOME')
1212
aslm_directory = os.path.join(base_directory, '.ASLM')

0 commit comments

Comments
 (0)