From d5727d4d20aaf16843074687c6650b785c012551 Mon Sep 17 00:00:00 2001 From: Erik Moeller Date: Thu, 27 Jun 2024 16:20:54 -0700 Subject: [PATCH] Avoid duplicating path --- sdw_notify/Notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdw_notify/Notify.py b/sdw_notify/Notify.py index 562538a7..055b0be2 100644 --- a/sdw_notify/Notify.py +++ b/sdw_notify/Notify.py @@ -11,7 +11,7 @@ sdlog = Util.get_logger(module=__name__) # The directory where status files and logs are stored -BASE_DIRECTORY = os.path.join(os.path.expanduser("~"), ".securedrop_updater") +BASE_DIRECTORY = Util.BASE_DIRECTORY # The file and format that contains the timestamp of the last successful update LAST_UPDATED_FILE = os.path.join(BASE_DIRECTORY, "sdw-last-updated")