Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ff3c80 commit 19a5a0bCopy full SHA for 19a5a0b
setup.py
@@ -28,7 +28,7 @@
28
long_description = readme_file.read() + '\n' + changes_file.read()
29
30
version = None
31
-with open(join("html5lib", "__init__.py"), "rb") as init_file:
+with open(join(here, "html5lib", "__init__.py"), "rb") as init_file:
32
t = ast.parse(init_file.read(), filename="__init__.py", mode="exec")
33
assert isinstance(t, ast.Module)
34
assignments = filter(lambda x: isinstance(x, ast.Assign), t.body)
0 commit comments