mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 11:42:43 +01:00
Fix --rm-cache-dir error message
This commit is contained in:
parent
c9ea760e31
commit
35b1e44567
@ -876,7 +876,7 @@ def _real_main(argv=None):
|
|||||||
ydl.to_screen(u'No cache dir specified (Did you combine --no-cache-dir and --rm-cache-dir?)')
|
ydl.to_screen(u'No cache dir specified (Did you combine --no-cache-dir and --rm-cache-dir?)')
|
||||||
else:
|
else:
|
||||||
if ('.cache' not in opts.cachedir) or ('youtube-dl' not in opts.cachedir):
|
if ('.cache' not in opts.cachedir) or ('youtube-dl' not in opts.cachedir):
|
||||||
ydl.to_screen(u'Not removing directory %s - this does not look like a cache dir')
|
ydl.to_screen(u'Not removing directory %s - this does not look like a cache dir' % opts.cachedir)
|
||||||
retcode = 141
|
retcode = 141
|
||||||
else:
|
else:
|
||||||
ydl.to_screen(
|
ydl.to_screen(
|
||||||
|
Loading…
Reference in New Issue
Block a user