From 86f63b0360a7486893dc77d225712836a8845a7c Mon Sep 17 00:00:00 2001 From: Markus Nyman Date: Thu, 12 Jan 2023 15:47:42 +0200 Subject: [PATCH] Fix movie query --- TimeToTrakt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TimeToTrakt.py b/TimeToTrakt.py index 4e0a2f8..42db17b 100644 --- a/TimeToTrakt.py +++ b/TimeToTrakt.py @@ -527,7 +527,7 @@ def get_movie_by_name(name): # Query the local database for existing selection user_matched_query = Query() - query_result = userMatchedMoviesTable.search(user_matched_query.movie_name == name) + query_result = userMatchedMoviesTable.search(user_matched_query.MovieName == name) # If the local database already contains an entry for a manual selection # then don't bother prompting the user to select it again!