Skip to content

Commit b3e7676

Browse files
committed
Replaced func call with pre-existing variable reference
1 parent 4e180ee commit b3e7676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def build_arch(self, arch):
443443
# after this the file with default options is already named "Setup"
444444
setup_dist_location = join('Modules', 'Setup.dist')
445445
if exists(setup_dist_location):
446-
shprint(sh.cp, join('Modules', 'Setup.dist'),
446+
shprint(sh.cp, setup_dist_location,
447447
join(build_dir, 'Modules', 'Setup'))
448448
else:
449449
# Check the expected file does exist

0 commit comments

Comments
 (0)