diff --git a/feed b/feed index e0059fe..4d856e0 100755 --- a/feed +++ b/feed @@ -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