Skip to content

Commit d78ae13

Browse files
committed
Debug prints
1 parent ac402f0 commit d78ae13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,10 +323,11 @@ def _run_cmake(self):
323323
# Move the built C-extension to the place expected by the Python
324324
# build
325325
self._found_names = []
326+
print(os.listdir())
326327
for name in self.CYTHON_MODULE_NAMES:
327328
built_path = self.get_ext_built(name)
328329
if not os.path.exists(built_path):
329-
print(built_path)
330+
print('Did not find {0}'.format(built_path))
330331
if self._failure_permitted(name):
331332
print('Cython module {0} failure permitted'
332333
.format(name))

0 commit comments

Comments
 (0)