From 16df8c2ac16010dc15c9482b3bb4088f051cfe60 Mon Sep 17 00:00:00 2001 From: Moe Fwacky Date: Mon, 3 Jan 2022 02:14:05 -0800 Subject: [PATCH] fixed a bug in a function fixed a wrong variable in the get_by_rating function --- both-dir/src/PseudoChannelDatabase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/both-dir/src/PseudoChannelDatabase.py b/both-dir/src/PseudoChannelDatabase.py index 785758d..f5ace52 100644 --- a/both-dir/src/PseudoChannelDatabase.py +++ b/both-dir/src/PseudoChannelDatabase.py @@ -1385,7 +1385,7 @@ class PseudoChannelDatabase(): return new_show def get_by_rating(self,series,duration,rating): - print("ACTION: Checking for Show with Rating: "+showData[9]) + print("ACTION: Checking for Show with Rating: "+series) showsList = [] shows = self.get_shows_table() seriesData = self.get_shows(series)