Blame SOURCES/python-lesscpy-fix-setup-encoding-issue.patch

28007d
diff -up python3-lesscpy-0.9j-1.fc19/setup.py.bak python3-lesscpy-0.9j-1.fc19/setup.py
28007d
--- python3-lesscpy-0.9j-1.fc19/setup.py.bak	2013-08-21 10:41:30.341289892 +0200
28007d
+++ python3-lesscpy-0.9j-1.fc19/setup.py	2013-08-21 10:42:25.308195797 +0200
28007d
@@ -24,6 +24,6 @@ setup(
28007d
                                 'lesscpy/test/css/issues/*.css',
28007d
                                 'lesscpy/test/less/*.less',
28007d
                                 'lesscpy/test/less/issues/*.less',]},
28007d
-      license=open('LICENSE').read(),
28007d
-      long_description=open('README.rst').read(),
28007d
+      license=open('LICENSE', encoding='utf-8').read(),
28007d
+      long_description=open('README.rst', encoding='utf-8').read(),
28007d
 )