mseibert_yourls and many other fixes #19

Merged
cronekorkn merged 13 commits from mseibert_yourls into master 2025-06-22 10:09:58 +02:00
Showing only changes of commit dc40295dde - Show all commits

View file

@ -6,4 +6,8 @@ for root, dirs, files in walk(join(repo_path, "groups")):
if filename.endswith(".py"):
group = join(root, filename)
with open(group, 'r', encoding='utf-8') as f:
try:
groups[splitext(basename(filename))[0]] = eval(f.read())
except:
print(f"Error parsing {group}:")
raise