diff --git a/src/python/parse-log.py b/src/python/parse-log.py index 7f1bd63..90a1510 100644 --- a/src/python/parse-log.py +++ b/src/python/parse-log.py @@ -25,7 +25,10 @@ def replace_author_names(author): "ShyVortex": "Angelo Trotta", "lorenzo.lepore": "Lorenzo Lepore", "mariolino21714@gmail.com": "Mario Rascato", - "TheBiggestONE00": "Mario Rascato" + "TheBiggestONE00": "Mario Rascato", + "mariorascato": "Mario Rascato", + "Darpet23": "Dario Petruccelli", + "SimonGitto": "Simone Infantino" } return replacements.get(author, author) @@ -48,7 +51,7 @@ def next_wednesday(d): current_start = current_end + timedelta(days=1) # Leggi il file di log -with open('git-log-frontend.txt', 'r') as f: +with open('git-log-backend.txt', 'r') as f: log_content = f.read() commits = parse_log(log_content)