From a0000434004d61962d88e0d3b92f6c91b5fb6f91 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Wed, 21 Feb 2024 10:05:58 -0500 Subject: [PATCH] test --- remove_lonely_collections.py | 1 + 1 file changed, 1 insertion(+) diff --git a/remove_lonely_collections.py b/remove_lonely_collections.py index cccce12..41177d0 100644 --- a/remove_lonely_collections.py +++ b/remove_lonely_collections.py @@ -33,6 +33,7 @@ class plex_info(): @property def token(self): token_script = pathlib.Path(SCRIPT_DIR).joinpath('plex-token.sh') + print(token_script) token_proc = subprocess.Popen(['/bin/bash', token_script], stdout=subprocess.PIPE) token = token_proc.stdout.read().decode().strip("\n") token_proc.terminate()