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()