Skip to content

Commit 25133dc

Browse files
gandhis1DonJayamanne
authored andcommitted
Change Jedi cache folder to LOCALAPPDATA (#1035)
As per davidhalter/jedi#926
1 parent 80651e3 commit 25133dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pythonFiles/preview/jedi/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
"""
110110

111111
if platform.system().lower() == 'windows':
112-
_cache_directory = os.path.join(os.getenv('APPDATA') or '~', 'Jedi',
112+
_cache_directory = os.path.join(os.getenv('LOCALAPPDATA') or '~', 'Jedi',
113113
'Jedi')
114114
elif platform.system().lower() == 'darwin':
115115
_cache_directory = os.path.join('~', 'Library', 'Caches', 'Jedi')

0 commit comments

Comments
 (0)