From 9636d3671c4c911152a9d276e54102ebc9a7ef8f Mon Sep 17 00:00:00 2001 From: MacRimi Date: Thu, 2 Apr 2026 11:38:36 +0200 Subject: [PATCH] Update notification_events.py --- AppImage/scripts/notification_events.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppImage/scripts/notification_events.py b/AppImage/scripts/notification_events.py index ff6585e6..5393e23c 100644 --- a/AppImage/scripts/notification_events.py +++ b/AppImage/scripts/notification_events.py @@ -1343,9 +1343,9 @@ class TaskWatcher: if starttime_hex: # LAST character of hex starttime determines subdirectory subdir = starttime_hex[-1].upper() - # The log filename is the full UPID without trailing colon - upid_clean = upid.rstrip(':') - log_path = os.path.join(self.TASK_DIR, subdir, upid_clean) + # The log filename is the full UPID INCLUDING the trailing colon + # Proxmox names the file exactly as the UPID (with colon at end) + log_path = os.path.join(self.TASK_DIR, subdir, upid) if os.path.exists(log_path): with open(log_path, 'r', errors='replace') as f: