We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7906be4 commit 2a1ee9fCopy full SHA for 2a1ee9f
setup.py
@@ -28,7 +28,7 @@
28
long_description = readme_file.read() + '\n' + changes_file.read()
29
30
version = None
31
-with open(os.path.join("html5lib", "__init__.py"), "rb") as init_file:
+with open(join("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