From 35c7a89b196843b76651be144d561fb1cb8259e6 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 13 May 2026 22:58:50 +0200 Subject: [PATCH] Fixed typo --- RNS/Utilities/rngit/pages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RNS/Utilities/rngit/pages.py b/RNS/Utilities/rngit/pages.py index 6b1c0d08..a9c0de9f 100644 --- a/RNS/Utilities/rngit/pages.py +++ b/RNS/Utilities/rngit/pages.py @@ -2220,7 +2220,7 @@ class NomadNetworkNode(): with open(thanks_path, "wb") as fh: fh.write(mp.packb({"count": thanks_count})) return thanks_count - except Exception as e: RNS.log(f"Error while processing repository thanks for {group_name}/{repo_name}: {e}", RNS.LOG_ERROR) + except Exception as e: RNS.log(f"Error while processing repository thanks for {repo_path}: {e}", RNS.LOG_ERROR) return 0 def release_thanks(self, release_path, add=False, link_id=None): @@ -2245,7 +2245,7 @@ class NomadNetworkNode(): with open(thanks_path, "wb") as fh: fh.write(mp.packb({"count": thanks_count})) return thanks_count - except Exception as e: RNS.log(f"Error while processing release thanks for {group_name}/{repo_name}: {e}", RNS.LOG_ERROR) + except Exception as e: RNS.log(f"Error while processing release thanks for {release_path}: {e}", RNS.LOG_ERROR) return 0 ###################