From 59f6e8c640e2125c2c5c820235f7ee9497172555 Mon Sep 17 00:00:00 2001 From: heliguy4599 Date: Sun, 6 Oct 2024 22:31:07 -0400 Subject: [PATCH] Fix missing path check --- src/snapshot_page/snapshot_page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snapshot_page/snapshot_page.py b/src/snapshot_page/snapshot_page.py index 6f8d1a9..df8a4ee 100644 --- a/src/snapshot_page/snapshot_page.py +++ b/src/snapshot_page/snapshot_page.py @@ -360,7 +360,7 @@ class SnapshotPage(Adw.BreakpointBin): id_to_tar = {} for app_id in app_ids: path = f"{HostInfo.snapshots_path}{app_id}" - if not os.path.exists: + if not os.path.exists(path): continue tarlist = []