mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 10:36:57 -07:00
Don't join empty paths
This commit is contained in:
parent
35778cfe72
commit
5bd51b2a17
1 changed files with 1 additions and 1 deletions
|
@ -3000,7 +3000,7 @@ class SCRIPTS(Notifier):
|
|||
'TAUTULLI_URL': helpers.get_plexpy_url(hostname='localhost'),
|
||||
'TAUTULLI_APIKEY': plexpy.CONFIG.API_KEY,
|
||||
'TAUTULLI_ENCODING': plexpy.SYS_ENCODING,
|
||||
'PYTHONPATH': os.pathsep.join(sys.path)
|
||||
'PYTHONPATH': os.pathsep.join([p for p in sys.path if p])
|
||||
})
|
||||
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue