don't expand globs on HTTP

(it just makes no sense)
This commit is contained in:
boyska 2023-01-29 10:50:17 +01:00
parent 751111143e
commit 55744a84a6

6
feed
View file

@ -581,7 +581,11 @@ def expand_glob(sources: list, weights: list) -> tuple:
new_weights = []
for src, weight in zip(sources, weights):
expanded_source = glob.glob(src)
if not src.startswith('http://') and not src.startswith('https://') and '*' in src:
expanded_source = glob.glob(src)
else:
expanded_source = [src]
logging.debug("glob: %s -> %s", src, expanded_source)
expanded_weight = [weight] * len(expanded_source)
new_sources += expanded_source