aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'MgaRepo/log.py')
-rw-r--r--MgaRepo/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/MgaRepo/log.py b/MgaRepo/log.py
index 25de1b7..04d6289 100644
--- a/MgaRepo/log.py
+++ b/MgaRepo/log.py
@@ -213,7 +213,7 @@ emailpat = re.compile("(?P<name>.*?)\s*<(?P<email>.*?)>")
def get_author_name(author):
found = emailpat.match(config.get("users", author, author))
name = ((found and found.group("name")) or author)
- email = ((found and found.group("email")) or author)
+ email = ((found and found.group("email")) or author+"@mageia.org")
return name, email
def parse_raw_date(rawdate):