~raj-abhilash1/mailman.client/domainowner

« back to all changes in this revision

Viewing changes to setup_helpers.py

  • Committer: Florian Fuchs
  • Date: 2014-12-16 11:07:10 UTC
  • Revision ID: flo.fuchs@gmail.com-20141216110710-gf3ufxo554zoa97t
* Setup: Fix usage of non-ascii characters in the long_description
* NEWS.txt: Fix typo in Aurélien Bompard's last name

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
    for value in filenames:
134
134
        if value.endswith('.txt'):
135
135
            with open(value) as fp:
136
 
                value = fp.read()
 
136
                value = fp.read().decode('UTF-8')
137
137
        res.append(value)
138
138
        if not value.endswith(NL):
139
139
            res.append('')