mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[noop] insert noop extractor when loading cookies without URL
allows writing --cookies-from-browser results with just gallery-dl --cookies-from-browser BROWSER --cookies-export DEST
This commit is contained in:
parent
5de8576ff6
commit
4a6e5af28e
@ -252,9 +252,13 @@ def main():
|
|||||||
args.input_files.append(input_file)
|
args.input_files.append(input_file)
|
||||||
|
|
||||||
if not args.urls and not args.input_files:
|
if not args.urls and not args.input_files:
|
||||||
parser.error(
|
if args.cookies_from_browser or config.interpolate(
|
||||||
"The following arguments are required: URL\n"
|
("extractor",), "cookies"):
|
||||||
"Use 'gallery-dl --help' to get a list of all options.")
|
args.urls.append("noop")
|
||||||
|
else:
|
||||||
|
parser.error(
|
||||||
|
"The following arguments are required: URL\nUse "
|
||||||
|
"'gallery-dl --help' to get a list of all options.")
|
||||||
|
|
||||||
if args.list_urls:
|
if args.list_urls:
|
||||||
jobtype = job.UrlJob
|
jobtype = job.UrlJob
|
||||||
|
Loading…
Reference in New Issue
Block a user