From d2fd240fc6c3f8b7a209a5f1389dc1cb9c885f1b Mon Sep 17 00:00:00 2001 From: RileyXX <49823202+RileyXX@users.noreply.github.com> Date: Thu, 23 Nov 2023 14:17:45 -0600 Subject: [PATCH] Add files via upload --- IMDBTraktSyncer/IMDBTraktSyncer.py | 2 ++ setup.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/IMDBTraktSyncer/IMDBTraktSyncer.py b/IMDBTraktSyncer/IMDBTraktSyncer.py index cfd1899..44843e1 100644 --- a/IMDBTraktSyncer/IMDBTraktSyncer.py +++ b/IMDBTraktSyncer/IMDBTraktSyncer.py @@ -699,6 +699,7 @@ def filter_by_comment_length(lst, min_comment_length=None): #Close web driver print("Closing webdriver...") + driver.close() driver.quit() service.stop() @@ -709,6 +710,7 @@ def filter_by_comment_length(lst, min_comment_length=None): # Close the driver and stop the service if they were initialized if 'driver' in locals() and driver is not None: + driver.close() driver.quit() if 'service' in locals() and service is not None: service.stop() diff --git a/setup.py b/setup.py index 19649f1..0c8f1dc 100644 --- a/setup.py +++ b/setup.py @@ -10,8 +10,8 @@ with codecs.open(os.path.join(here, "README.md"), 'r', encoding="utf-8") as fh: long_description = "\n" + fh.read() -VERSION = '1.8.4' -DESCRIPTION = 'A python script that syncs user watchlist, ratings and comments for Movies, TV Shows and Episodes both ways between Trakt and IMDB.' +VERSION = '1.8.5' +DESCRIPTION = 'A python script that syncs user watchlist, ratings and reviews for Movies, TV Shows and Episodes both ways between Trakt and IMDB.' # Setting up setup(