From: W. Trevor King Date: Fri, 18 Jan 2013 03:07:45 +0000 (-0500) Subject: rss2email: Sort __contributors__ by first name and add missing folks X-Git-Tag: v3.0~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=050fbec7a312015ab0d26823028c425d7d0db82a;p=rss2email.git rss2email: Sort __contributors__ by first name and add missing folks This brings __contributors__ in line with the auto-generated AUTHORS. I'm not convinced that listing __contributors__ in a Python-parsable manner is worth the trouble, but I'll leave it in for now. Signed-off-by: W. Trevor King --- diff --git a/rss2email/__init__.py b/rss2email/__init__.py index 1eec581..071cc31 100644 --- a/rss2email/__init__.py +++ b/rss2email/__init__.py @@ -26,16 +26,18 @@ __url__ = 'http://rss2email.infogami.com' __author__ = 'W. Trevor King' __copyright__ = '(C) 2004 Aaron Swartz. GNU GPL 2 or 3.' __contributors__ = [ - 'Dean Jackson', + 'Aaron Swartz (original author)', 'Brian Lalor', + 'Dean Jackson', + 'Eelis van der Weegen', + 'Erik Hetzner', + 'Etienne Millon', 'Joey Hess', - 'Matej Cepl', - "Martin 'Joey' Schulze", - 'Marcel Ackermann (http://www.DreamFlasher.de)', 'Lindsey Smith (lindsey@allthingsrss.com)', - 'Erik Hetzner', + 'Marcel Ackermann (http://www.DreamFlasher.de)', + "Martin 'Joey' Schulze", + 'Matej Cepl', 'W. Trevor King', - 'Aaron Swartz (original author)', ] LOG = _logging.getLogger('rss2email')