From 56eae75e515ab30e69877e199a51904980f39b3a Mon Sep 17 00:00:00 2001 From: Mark Schmidt Date: Tue, 28 Jul 2026 20:34:29 -0500 Subject: [PATCH] Fix nested f-string for Python 3.8 --- frames | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frames b/frames index e61b8b5..aec92b2 100755 --- a/frames +++ b/frames @@ -2705,7 +2705,8 @@ def cmd_video_info(args): audio = f", audio: {r['audio_codec']}" if r.get("audio") else ", no audio" print(f" {C.dim(dims)} {C.dim('•')} {duration} {C.dim('•')} {r.get('codec') or 'unknown codec'}{audio}") if r.get("rotation") and r["rotation"] != "none": - print(f" {C.dim('Rotated:')} {r['source_dimensions']} {C.dim('→')} {r['dimensions']} {C.dim(f'({r["rotation"]})')}") + rotation_label = f"({r['rotation']})" + print(f" {C.dim('Rotated:')} {r['source_dimensions']} {C.dim('→')} {r['dimensions']} {C.dim(rotation_label)}") print(f" {C.green('✓')} {C.bold(r['device'])}") if r.get("is_variant"): print(f" {C.dim('Primary match:')} {r['primary_match']} {C.dim('→ variant resolved')}")