Skip to content

Commit 0a2b397

Browse files
committed
Fix pref_updates.json path to work on linux
1 parent 4c3be1e commit 0a2b397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

preditor/prefs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def get_prefs_updates():
294294
updates (dict): The dict of defined updates
295295
"""
296296
updates = {}
297-
path = resourcePath(r"pref_updates\pref_updates.json")
297+
path = resourcePath("pref_updates/pref_updates.json")
298298
try:
299299
updates = utils.Json(path).load()
300300
except (FileNotFoundError, json.decoder.JSONDecodeError):

0 commit comments

Comments
 (0)