Skip to content

Commit

Permalink
Fix missing list brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian-O committed Sep 9, 2023
1 parent e763617 commit 94b9655
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions buildozer/targets/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,10 @@ def check_requirements(self):
# Need to add internally-installed ant to path for external tools
# (like adb) to use
self.buildozer.environ['PATH'] = os.pathsep.join(
join(self.apache_ant_dir, 'bin'),
self.buildozer.environ['PATH'],
)
[
join(self.apache_ant_dir, 'bin'),
self.buildozer.environ['PATH'],
])

buildops.checkbin('Git (git)', 'git')
buildops.checkbin('Cython (cython)', 'cython')
Expand Down

0 comments on commit 94b9655

Please sign in to comment.