Skip to content

Commit

Permalink
fix download of Android SDK in linux with python 3.3. Closes #110
Browse files Browse the repository at this point in the history
  • Loading branch information
tito committed Jun 2, 2014
1 parent 819a925 commit 373f8e2
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 @@ -228,7 +228,7 @@ def _install_android_sdk(self):
elif platform in ('darwin', ):
archive = 'android-sdk_r{0}-macosx.zip'
unpacked = 'android-sdk-macosx'
elif platform in ('linux2', 'linux3'):
elif platform.startswith('linux'):
archive = 'android-sdk_r{0}-linux.tgz'
unpacked = 'android-sdk-linux'
else:
Expand Down

0 comments on commit 373f8e2

Please sign in to comment.