From 53eb810bcd1d17eae91abda5ce02041d099a5650 Mon Sep 17 00:00:00 2001 From: freeroot Date: Mon, 26 Dec 2016 19:54:24 +0100 Subject: [PATCH] fix #147 --- Mailnag/configuration/configwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailnag/configuration/configwindow.py b/Mailnag/configuration/configwindow.py index e27b4c1..0056b52 100644 --- a/Mailnag/configuration/configwindow.py +++ b/Mailnag/configuration/configwindow.py @@ -297,7 +297,7 @@ class ConfigWindow: def _delete_autostart(self): autostart_folder = os.path.join(bd.xdg_config_home, "autostart") - autostart_file = autostart_folder + "mailnag.desktop" + autostart_file = os.path.join(autostart_folder, "mailnag.desktop") if os.path.exists(autostart_file): os.remove(autostart_file)