From d72ecb332abfaf2801bff5cc3e531d34c3814784 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Mon, 21 Mar 2022 03:43:48 +0000 Subject: [PATCH] fixed variable name error --- video2x/video2x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video2x/video2x.py b/video2x/video2x.py index c077b63..c76a545 100755 --- a/video2x/video2x.py +++ b/video2x/video2x.py @@ -258,7 +258,7 @@ class Video2X: disable=True, ) - self.description = f"[cyan]{MODE_LABELS.get(self.mode, 'Unknown')}" + self.description = f"[cyan]{MODE_LABELS.get(mode, 'Unknown')}" self.task = self.progress.add_task(self.description, total=total_frames) # allow sending SIGUSR1 to pause/resume processing