From e9f69e9df0fd1cd484670af180d64caea53eaa5c Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sat, 28 Feb 2015 22:34:54 +0100 Subject: safe_join -> fs_join --- pyload/plugin/crypter/YoutubeBatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyload/plugin/crypter/YoutubeBatch.py') diff --git a/pyload/plugin/crypter/YoutubeBatch.py b/pyload/plugin/crypter/YoutubeBatch.py index 3fea12ff0..1573cd36d 100644 --- a/pyload/plugin/crypter/YoutubeBatch.py +++ b/pyload/plugin/crypter/YoutubeBatch.py @@ -6,7 +6,7 @@ from urlparse import urljoin from pyload.utils import json_loads from pyload.plugin.Crypter import Crypter -from pyload.utils import safe_join +from pyload.utils import fs_join class YoutubeBatch(Crypter): @@ -132,7 +132,7 @@ class YoutubeBatch(Crypter): for p in playlists: p_name = p['title'] p_videos = self.getVideosId(p['id']) - p_folder = safe_join(self.config['general']['download_folder'], p['channelTitle'], p_name) + p_folder = fs_join(self.config['general']['download_folder'], p['channelTitle'], p_name) self.logDebug("%s video\s found on playlist \"%s\"" % (len(p_videos), p_name)) if not p_videos: -- cgit v1.2.3