From 390152932ee751a477940f3686b47f160f45ba29 Mon Sep 17 00:00:00 2001 From: Leandro Nunes Date: Fri, 17 Sep 2021 02:16:57 +0100 Subject: [PATCH] Fix line break in `setup.py` (#9029) --- 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)