FreeBSD Bugzilla – Attachment 160246 Details for
Bug 201564
sysutils/py-tmuxp: not building with python 3
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
fix for python3
patch-setup.py (text/plain), 414 bytes, created by
Ruslan Makhmatkhanov
on 2015-08-23 11:49:30 UTC
(
hide
)
Description:
fix for python3
Filename:
MIME Type:
Creator:
Ruslan Makhmatkhanov
Created:
2015-08-23 11:49:30 UTC
Size:
414 bytes
patch
obsolete
>--- setup.py.orig 2015-07-08 12:40:52 UTC >+++ setup.py >@@ -22,7 +22,10 @@ if sys.version_info < (2, 7): > install_reqs += ['argparse'] > tests_reqs += ['unittest2'] > >-readme = open('README.rst').read() >+if sys.version_info[0] == 3: >+ readme = open('README.rst', encoding='utf-8').read() >+else: >+ readme = open('README.rst').read() > history = open('CHANGES').read().replace('.. :changelog:', '') > > setup(
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 201564
: 160246