diff options
author | hedii <hedi.chaibs@gmail.com> | 2015-11-17 16:41:59 +0100 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-19 22:39:02 +0600 |
commit | 371c3b796cb4168dbb2cb1ad48e3cf12745a8601 (patch) | |
tree | 0a0d65fe1bb009a052e0634ddcfd18ead2a891e3 | |
parent | 6b7ceee1b9124521d2f583fb0d0717999747fdcf (diff) |
[YoutubeDL] Add playlist finished downloading message (Closes #7517)
Conflicts:
youtube_dl/YoutubeDL.py
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 1783ce01b..9d626049a 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -833,6 +833,7 @@ class YoutubeDL(object): extra_info=extra) playlist_results.append(entry_result) ie_result['entries'] = playlist_results + self.to_screen('[download] Finished downloading playlist: %s' % playlist) return ie_result elif result_type == 'compat_list': self.report_warning( |