From f97dfca46f92b2840a6ce0f6c76ce336712f1ffd Mon Sep 17 00:00:00 2001 From: Jonathan Rampersad Date: Thu, 13 Nov 2025 16:18:54 -0400 Subject: [PATCH] BUGFIX: typo in main.py --- setup.cfg | 2 +- src/surround_to_eac3/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index fa1f32f..5df0c3c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = surround-to-eac3 -version = 0.5.0 +version = 0.5.1 author = Jonathan Rampersad author_email = jonathan@jono-rams.work description = A CLI tool to transcode 5.1 audio in video files to E-AC3. diff --git a/src/surround_to_eac3/main.py b/src/surround_to_eac3/main.py index 389e00a..9919348 100644 --- a/src/surround_to_eac3/main.py +++ b/src/surround_to_eac3/main.py @@ -225,7 +225,7 @@ def main(): # --- Summary (unchanged) --- summary_title = "--- Dry Run Summary ---" if args.dry_run else "--- Processing Summary ---" - processed_label = "Would be processed" if args.dry_row else "Successfully processed" + processed_label = "Would be processed" if args.dry_run else "Successfully processed" print() print(f"\n{summary_title}")