Skip to content

Commit 8ced546

Browse files
authored
Fix line break in setup.py (#9029)
1 parent a74ef13 commit 8ced546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def is_pure(self):
166166
if os.path.isfile(path):
167167
shutil.copy(path, os.path.join(CURRENT_DIR, "tvm"))
168168
_, libname = os.path.split(path)
169-
fo.write(f"include tvm/{libname}%s")
169+
fo.write(f"include tvm/{libname}\n")
170170

171171
if os.path.isdir(path):
172172
_, libname = os.path.split(path)

0 commit comments

Comments
 (0)