Skip to content

Commit

Permalink
Fix line break in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leandron committed Sep 16, 2021
1 parent 02fbaf0 commit bbe1d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def is_pure(self):
if os.path.isfile(path):
shutil.copy(path, os.path.join(CURRENT_DIR, "tvm"))
_, libname = os.path.split(path)
fo.write(f"include tvm/{libname}%s")
fo.write(f"include tvm/{libname}\n")

if os.path.isdir(path):
_, libname = os.path.split(path)
Expand Down

0 comments on commit bbe1d3a

Please sign in to comment.