Skip to content

Commit

Permalink
Fixes glob function call, closes #1044
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMiras committed Mar 30, 2020
1 parent cceab3c commit ae589da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildozer/targets/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ def get_dist_dir(self, dist_name, arch):
old_dist_dir = join(self._build_dir, 'dists', dist_name)
if exists(old_dist_dir):
return old_dist_dir
matching_dirs = glob.glob(join(self._build_dir, 'dist', '{}*'.format(dist_name)))
matching_dirs = glob(join(self._build_dir, 'dist', '{}*'.format(dist_name)))

# If no directory has been found yet, our dist probably
# doesn't exist yet, so use the expected name
Expand Down

0 comments on commit ae589da

Please sign in to comment.