From ef8e504a7b7dc26b75b39124d7eae35db96b9119 Mon Sep 17 00:00:00 2001 From: Leandro Nunes Date: Thu, 16 Sep 2021 10:51:51 +0100 Subject: [PATCH] Fix line break in `setup.py` --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index f6afa42610d4..1b2a9d3ee965 100644 --- a/python/setup.py +++ b/python/setup.py @@ -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)