From 1cfa51f2ca768e826c719131ef2264fdde9df7a0 Mon Sep 17 00:00:00 2001 From: Javanaut Date: Fri, 18 Oct 2024 21:29:58 +0200 Subject: [PATCH] Identify Show MWE --- bin/ffx/show_details_screen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ffx/show_details_screen.py b/bin/ffx/show_details_screen.py index 921acde..cf322b8 100644 --- a/bin/ffx/show_details_screen.py +++ b/bin/ffx/show_details_screen.py @@ -350,7 +350,7 @@ class ShowDetailsScreen(Screen): showResult = self.__tc.queryShow(showDescriptor.getId()) firstAirDate = datetime.strptime(showResult['first_air_date'], '%Y-%m-%d') - self.query_one("#name_input", Input).value = showResult['name'] - self.query_one("#year_input", Input).value = firstAirDate.year + self.query_one("#name_input", Input).value = str(showResult['name']) + self.query_one("#year_input", Input).value = str(firstAirDate.year)