diff options
| author | 2023-05-22 01:03:38 -0400 | |
|---|---|---|
| committer | 2023-05-22 01:03:38 -0400 | |
| commit | 6a3ce8a0116b7439a93fa6070b792f4ffc499be2 (patch) | |
| tree | 35efcd67c38f4d4212c68c59a4e62b6273134cff /gallery_dl/__init__.py | |
| parent | 20f65494bdac2072232db84fbc12bec78a675da6 (diff) | |
| parent | bff1d7a3fc1f184002ea6c6f77de675885bda3eb (diff) | |
Update upstream source from tag 'upstream/1.25.4'
Update to upstream version '1.25.4'
with Debian dir c3cf6e971855b5ed8569feef8efa371f1ca81f8c
Diffstat (limited to 'gallery_dl/__init__.py')
| -rw-r--r-- | gallery_dl/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gallery_dl/__init__.py b/gallery_dl/__init__.py index a430f13..1450e8f 100644 --- a/gallery_dl/__init__.py +++ b/gallery_dl/__init__.py @@ -70,12 +70,14 @@ def main(): if args.cookies_from_browser: browser, _, profile = args.cookies_from_browser.partition(":") browser, _, keyring = browser.partition("+") + browser, _, domain = browser.partition("/") if profile.startswith(":"): container = profile[1:] profile = None else: profile, _, container = profile.partition("::") - config.set((), "cookies", (browser, profile, keyring, container)) + config.set((), "cookies", ( + browser, profile, keyring, container, domain)) if args.options_pp: config.set((), "postprocessor-options", args.options_pp) for opts in args.options: |
