From 767f5b16b771c66bff24aed79f7221bb8d41e0a4 Mon Sep 17 00:00:00 2001 From: Ivan Reshetnikov Date: Mon, 12 Sep 2022 17:10:25 +0500 Subject: [PATCH] Save files inside the "share" subfolder --- histd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/histd.py b/histd.py index aeecca1..c7714e5 100755 --- a/histd.py +++ b/histd.py @@ -17,7 +17,7 @@ def get_base_dir() -> str: Returns the path to the directory where data can be stored. """ - base_dir = os.path.expanduser('~/.local/histd') + base_dir = os.path.expanduser('~/.local/share/histd') os.makedirs(base_dir, exist_ok=True) return base_dir