We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e98c6 commit 72ad949Copy full SHA for 72ad949
src/aslm/config/config.py
@@ -4,9 +4,9 @@
4
from pathlib import Path
5
6
def get_configuration_paths():
7
- # Establish a base directory in AppData/.ASLM for Windows or ~/.ASLM for Mac and Linux
+ # Establish a base directory in AppData/Local/.ASLM for Windows or ~/.ASLM for Mac and Linux
8
if platform.system() == 'Windows':
9
- base_directory = os.getenv('APPDATA')
+ base_directory = os.getenv('LOCALAPPDATA')
10
else:
11
base_directory = os.getenv('HOME')
12
aslm_directory = os.path.join(base_directory, '.ASLM')
0 commit comments