From 906b92e0ef01601393c9c9ff5fbdab9e65924e2c Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Sun, 22 Jan 2012 22:43:26 +0100 Subject: [PATCH] Include full name, now that we have it from the new auth system... Noted by Stefan Kaltenbrunner --- gitdump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitdump.py b/gitdump.py index fbe93f6..0fede92 100644 --- a/gitdump.py +++ b/gitdump.py @@ -59,7 +59,7 @@ class AuthorizedKeysDumper(object): curs.execute(""" SELECT name,anonymous,web,description,initialclone,tabwidth, COALESCE( - (SELECT min(first_name) FROM repository_permissions AS rp + (SELECT min(first_name || ' ' || last_name) FROM repository_permissions AS rp LEFT JOIN auth_user AS au ON au.username=rp.userid WHERE rp.level=2 AND rp.repository=r.repoid),''), CASE WHEN EXISTS -- 2.39.5