Commit 0f22bc90 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix deleted line.

parent d35a9f8c
...@@ -966,6 +966,7 @@ def cythonize(module_list, exclude=None, nthreads=0, aliases=None, quiet=False, ...@@ -966,6 +966,7 @@ def cythonize(module_list, exclude=None, nthreads=0, aliases=None, quiet=False,
if build_dir: if build_dir:
if os.path.isabs(c_file): if os.path.isabs(c_file):
warnings.warn("build_dir has no effect for absolute source paths") warnings.warn("build_dir has no effect for absolute source paths")
c_file = os.path.join(build_dir, c_file)
dir = os.path.dirname(c_file) dir = os.path.dirname(c_file)
safe_makedirs_once(dir) safe_makedirs_once(dir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment