diff options
| author | 2019-07-20 05:51:48 -0400 | |
|---|---|---|
| committer | 2019-07-20 05:51:48 -0400 | |
| commit | 38accf3526a88643ca2a7dbb6a0356f09cfeb6b8 (patch) | |
| tree | 7bd7dd9f7de7735d13d8d97140e4de1698b44728 /gallery_dl/__init__.py | |
| parent | 0d3bf12093addd340346bc053f2c8fecf45b30b6 (diff) | |
| parent | 2a63a9c9b7032a76894c48ac4d9cea732fcaee49 (diff) | |
Update upstream source from tag 'upstream/1.9.0'
Update to upstream version '1.9.0'
with Debian dir e4e6deed2c5d767438ea4528bc329c28c5e72178
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 3643a5c..806b229 100644 --- a/gallery_dl/__init__.py +++ b/gallery_dl/__init__.py @@ -122,7 +122,9 @@ def main(): if args.yamlfiles: config.load(args.yamlfiles, strict=True, fmt="yaml") if args.postprocessors: - config.set(("postprocessors", ), args.postprocessors) + config.set(("postprocessors",), args.postprocessors) + if args.abort: + config.set(("skip",), "abort:" + str(args.abort)) for key, value in args.options: config.set(key, value) |
