From fa84ef53e784f4497aafc847138ce7eaf2418970 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Wed, 8 Mar 2023 13:43:11 +0000 Subject: [PATCH] Don't space the `*` that denotes KIDs within PSSH This prevents it from being 1 character over the size limit and wrapping to the next line. --- devine/commands/dl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devine/commands/dl.py b/devine/commands/dl.py index c3146b4..6bd9a07 100644 --- a/devine/commands/dl.py +++ b/devine/commands/dl.py @@ -672,7 +672,7 @@ class dl: if key == "0" * 32: key = f"[red]{key}[/]" if kid_ == kid: - key += " *" + key += "*" label = f"[text2]{kid_.hex}:{key}" if not any(x.label == label for x in cek_tree.children): cek_tree.add(label)