From 6551a25877050da00046f97286de74b12b559e62 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 9 May 2026 01:10:49 +0200 Subject: [PATCH] Cleanup --- RNS/Utilities/rngit/util.py | 1 - 1 file changed, 1 deletion(-) diff --git a/RNS/Utilities/rngit/util.py b/RNS/Utilities/rngit/util.py index cd712d74..19590aec 100644 --- a/RNS/Utilities/rngit/util.py +++ b/RNS/Utilities/rngit/util.py @@ -34,7 +34,6 @@ import RNS # Validate ref names according to https://git-scm.com/docs/git-check-ref-format # This may be a bit overkill, since git validates names as well, but why not. def san_ref(ref): - RNS.log(f"SAN REF: {ref}") if ref.startswith("-"): return None if ref.startswith("/"): return None if ref.endswith("/"): return None