From 98ad8693b03a0baec581c9f2edb9634e19c04fc5 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Mon, 29 Mar 2021 00:22:53 -0700 Subject: [PATCH] Skip importing version_info table --- plexpy/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/database.py b/plexpy/database.py index ac792f75..ee075387 100644 --- a/plexpy/database.py +++ b/plexpy/database.py @@ -145,7 +145,7 @@ def import_tautulli_db(database=None, method=None, backup=False): 'ORDER BY name') for table in tables: table_name = table['name'] - if table_name == 'sessions': + if table_name == 'sessions' or table_name == 'version_info': # Skip temporary sessions table continue