From 29780723f6ce4e4f78601fd2d72f24c82d9d4d54 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sat, 16 Feb 2019 10:12:38 +0100 Subject: [PATCH] empty the mount_paths property after unmounting the archives --- borg_qt/main_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/borg_qt/main_window.py b/borg_qt/main_window.py index 094f613..8dbe708 100644 --- a/borg_qt/main_window.py +++ b/borg_qt/main_window.py @@ -82,6 +82,7 @@ class MainWindow(QMainWindow): if os.path.exists(path): os.system('borg umount ' + path) remove_path(path) + self.mount_paths = [] def show_settings(self): """Display the settings dialog."""