/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2018-08-14 20:31:23 UTC
  • mfrom: (7067 work)
  • mto: This revision was merged to the branch mainline in revision 7078.
  • Revision ID: jelmer@jelmer.uk-20180814203123-eiq2h8j2hei4lpxm
Merge truk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
def get_long_description():
25
25
    dirname = os.path.dirname(__file__)
26
26
    readme = os.path.join(dirname, 'README.rst')
27
 
    with open(readme, 'rb') as f:
 
27
    with open(readme, 'r') as f:
28
28
        return f.read()
29
29
 
30
30