Skip to content

Commit

Permalink
Variable renaming for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
inclement committed Nov 23, 2013
1 parent aba7f78 commit 58d9d28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildozer/targets/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ def install_platform(self):
cmd = self.buildozer.cmd
self.pa_dir = pa_dir = join(self.buildozer.platform_dir, 'python-for-android')
if not self.buildozer.file_exists(pa_dir):
p4a_dir = self.buildozer.config.getdefault('app', 'p4a_dir')
if p4a_dir:
cmd('ln -s {} ./python-for-android'.format(p4a_dir),
system_p4a_dir = self.buildozer.config.getdefault('app', 'p4a_dir')
if system_p4a_dir:
cmd('ln -s {} ./python-for-android'.format(system_p4a_dir),
cwd = self.buildozer.platform_dir)
else:
cmd('git clone git://github.com/kivy/python-for-android',
Expand Down

0 comments on commit 58d9d28

Please sign in to comment.