diff --git a/ai4papi/routers/v1/catalog/common.py b/ai4papi/routers/v1/catalog/common.py index 8a4267c2..1b6da7a9 100644 --- a/ai4papi/routers/v1/catalog/common.py +++ b/ai4papi/routers/v1/catalog/common.py @@ -72,7 +72,7 @@ def get_items( modules = {} for section in cfg.sections(): items = dict(cfg.items(section)) - key = items.pop('path').lower() + key = items.pop('path') items['url'] = items['url'].replace('.git', '') # remove `.git`, if present modules[key] = items