From 44ea9a90a761b83984690b652b3b572118152ba9 Mon Sep 17 00:00:00 2001 From: Andy Date: Sat, 7 Feb 2026 19:46:35 -0700 Subject: [PATCH] fix(titles): remove trailing space from HDR dynamic range label --- unshackle/core/titles/episode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unshackle/core/titles/episode.py b/unshackle/core/titles/episode.py index f10e9d3..b3e90d8 100644 --- a/unshackle/core/titles/episode.py +++ b/unshackle/core/titles/episode.py @@ -221,7 +221,7 @@ class Episode(Title): elif "HDR Vivid" in hdr_format: name += " HDR" else: - name += f" {DYNAMIC_RANGE_MAP.get(hdr_format)} " + name += f" {DYNAMIC_RANGE_MAP.get(hdr_format)}" elif "HLG" in trc or "Hybrid Log-Gamma" in trc or "ARIB STD-B67" in trc or "arib-std-b67" in trc.lower(): name += " HLG" elif any(indicator in trc for indicator in ["PQ", "SMPTE ST 2084", "BT.2100"]) or "smpte2084" in trc.lower() or "bt.2020-10" in trc.lower():