1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 18:19:32 +00:00

[__init__] Provide a better error messages if URLs are missing (Closes #4813)

This commit is contained in:
Philipp Hagemeister 2015-01-30 01:56:15 +01:00
parent a7a14d9586
commit adc0ae3ceb

View file

@ -361,7 +361,9 @@ def _real_main(argv=None):
sys.exit()
ydl.warn_if_short_id(sys.argv[1:] if argv is None else argv)
parser.error('you must provide at least one URL')
parser.error(
'You must provide at least one URL.\n'
'Type youtube-dl --help to see a list of all options.')
try:
if opts.load_info_filename is not None: