add channel name in error file

pull/14/head
Tjiho 2020-01-05 01:31:23 +01:00
rodzic a6469621b7
commit 7af4e6221b
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

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