From c944fbba4caa50f541bab71cc9e38af30e2f4998 Mon Sep 17 00:00:00 2001 From: marco Date: Mon, 17 Feb 2020 22:12:06 +0100 Subject: [PATCH] fix nextep x smb --- specials/nextep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specials/nextep.py b/specials/nextep.py index 351f5acd..61089e19 100644 --- a/specials/nextep.py +++ b/specials/nextep.py @@ -79,7 +79,7 @@ def next_ep(item): base_path = os.path.basename(os.path.normpath(os.path.dirname(item.strm_path))) path = filetools.join(config.get_videolibrary_path(), config.get_setting("folder_tvshows"),base_path) fileList = [] - for file in os.listdir(path): + for file in filetools.listdir(path): if file.endswith('.strm'): fileList.append(file)