mirror of https://github.com/MISP/PyMISP
fix invalid py2 keyword
parent
9a25919fa2
commit
d8be769397
2
setup.py
2
setup.py
|
@ -7,7 +7,7 @@ from setuptools import setup
|
|||
import pymisp
|
||||
|
||||
this_directory = path.abspath(path.dirname(__file__))
|
||||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
||||
with open(path.join(this_directory, 'README.md'), 'r') as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Reference in New Issue