------------------------------------------------------------ revno: 59 committer: Florian Fuchs <flo.fu...@gmail.com> branch nick: mailman.client timestamp: Tue 2014-12-16 12:07:10 +0100 message: * Setup: Fix usage of non-ascii characters in the long_description * NEWS.txt: Fix typo in Aurélien Bompard's last name modified: setup_helpers.py src/mailmanclient/NEWS.txt
-- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription
=== modified file 'setup_helpers.py' --- setup_helpers.py 2010-12-23 16:29:39 +0000 +++ setup_helpers.py 2014-12-16 11:07:10 +0000 @@ -133,7 +133,7 @@ for value in filenames: if value.endswith('.txt'): with open(value) as fp: - value = fp.read() + value = fp.read().decode('UTF-8') res.append(value) if not value.endswith(NL): res.append('') === modified file 'src/mailmanclient/NEWS.txt' --- src/mailmanclient/NEWS.txt 2014-11-24 10:25:10 +0000 +++ src/mailmanclient/NEWS.txt 2014-12-16 11:07:10 +0000 @@ -4,7 +4,7 @@ 1.0.0b1 (xxxx-xx-xx) -* Addedd an improved test harness using WebTest. Contributed by Aurélien Abompard. +* Addedd an improved test harness using WebTest. Contributed by Aurélien Bompard. 1.0.0a1 (2014-03-15)
_______________________________________________ Mailman-coders mailing list Mailman-coders@python.org https://mail.python.org/mailman/listinfo/mailman-coders