From e2bc6eba1c2900496836ff739997e733b7b04632 Mon Sep 17 00:00:00 2001 From: David Lynch Date: Sat, 23 Nov 2024 15:54:06 -0600 Subject: [PATCH] Change order of config loading so site-specific overrides of cover/image work --- leech.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/leech.py b/leech.py index 5064fce..1e22c02 100755 --- a/leech.py +++ b/leech.py @@ -90,11 +90,11 @@ def create_options(site, site_options, unused_flags): # and overridden, and flag-specified options together in that order. options = dict( list(default_site_options.items()) + + list(cover_options.items()) + + list(image_options.items()) + list(configured_site_options.items()) + list(overridden_site_options.items()) + - list(flag_specified_site_options.items()) + - list(cover_options.items()) + - list(image_options.items()) + list(flag_specified_site_options.items()) ) return options, login