Merge pull request #736 from dbrnz/android_install_reqs
Allow for `install_reqs` line having whitespace at start, fixes #731 and #733
This commit is contained in:
commit
4e87eaa795
1 changed files with 1 additions and 1 deletions
|
@ -521,7 +521,7 @@ class TargetAndroid(Target):
|
|||
try:
|
||||
with open(join(self.pa_dir, "setup.py")) as fd:
|
||||
setup = fd.read()
|
||||
deps = re.findall("^install_reqs = (\[[^\]]*\])", setup, re.DOTALL | re.MULTILINE)[0]
|
||||
deps = re.findall("^\s*install_reqs = (\[[^\]]*\])", setup, re.DOTALL | re.MULTILINE)[0]
|
||||
deps = ast.literal_eval(deps)
|
||||
except IOError:
|
||||
self.buildozer.error('Failed to read python-for-android setup.py at {}'.format(
|
||||
|
|
Loading…
Reference in a new issue