mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
Do not print file name on warning message (fixes issue #197)
This commit is contained in:
parent
33407be7d6
commit
5c44af1875
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ class FileDownloader(object):
|
|||
self.trouble(u'ERROR: invalid system charset or erroneous output template')
|
||||
return
|
||||
if self.params.get('nooverwrites', False) and os.path.exists(filename):
|
||||
self.to_stderr(u'WARNING: file exists: %s; skipping' % filename)
|
||||
self.to_stderr(u'WARNING: file exists and will be skipped')
|
||||
return
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue