diff --git a/youtube2peertube.py b/youtube2peertube.py index f93ed34..e478b46 100644 --- a/youtube2peertube.py +++ b/youtube2peertube.py @@ -239,9 +239,9 @@ def pt_http_import(dl_dir, channel_conf, queue_item, access_token, thumb_extensi return handle_peertube_result(requests.post(pt_api + "/videos/imports", data=multipart_data, headers=headers)) -def log_upload_error(yt_url): - error_file = open("video_errors.txt", "a") - error_file.write(yt_url+"\n") +def log_upload_error(yt_url,channel_conf): + error_file = open("video_errors.csv", "a") + error_file.write(channel_conf['name']+","+yt_url+"\n") error_file.close() print("error !") @@ -301,7 +301,7 @@ def run_steps(conf): if pt_result: print("done !") else: - log_upload_error(queue_item["link"]) + log_upload_error(queue_item["link"],channel_conf) if delete_videos: print("deleting videos and/or thumbnails...") rmtree(dl_dir + "/" + channel_conf["name"], ignore_errors=True)