Skip to content

Commit a247632

Browse files
authored
Merge pull request #1746 from mkg20001/fix-cwd-is
fix: "cwd is" log message was printed directly, not via debug()
2 parents be4c5b7 + ae9f81e commit a247632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ def build_cython_components(self, arch):
990990
with current_directory(self.get_build_dir(arch.arch)):
991991
hostpython = sh.Command(self.ctx.hostpython)
992992
shprint(hostpython, '-c', 'import sys; print(sys.path)', _env=env)
993-
print('cwd is', realpath(curdir))
993+
debug('cwd is {}'.format(realpath(curdir)))
994994
info('Trying first build of {} to get cython files: this is '
995995
'expected to fail'.format(self.name))
996996

0 commit comments

Comments
 (0)