From e99f19dd6c0d695a5c515374ad94b6601c2b8cd5 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 9 Mar 2015 07:06:33 -0400 Subject: [PATCH] * Fix clean function --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b1ff3a533..b2f77c8fe 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ def clean(mod_names): c = name + '.c' for file_path in [so, html, cpp, c]: if os.path.exists(file_path): - shutil.move(file_path, '/tmp') + os.unlink(file_path) def name_to_path(mod_name, ext):