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)