Explorar el Código

Merge pull request #83 from legoktm/patch-1

Force opening README.rst as utf-8 in Py3k
tags/v0.4
Ben Kurtovic hace 9 años
padre
commit
32d8bc507b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      setup.py

+ 1
- 1
setup.py Ver fichero

@@ -32,7 +32,7 @@ from setuptools import setup, find_packages, Extension
from mwparserfromhell import __version__
from mwparserfromhell.compat import py26, py3k

with open("README.rst") as fp:
with open("README.rst", **{'encoding':'utf-8'} if py3k else {}) as fp:
long_docs = fp.read()

tokenizer = Extension("mwparserfromhell.parser._tokenizer",


Cargando…
Cancelar
Guardar