Skip to content

Commit 25f9231

Browse files
committed
Fixed sdl2 build.py when no --service supplied
1 parent c460237 commit 25f9231

File tree

1 file changed

+3
-0
lines changed
  • pythonforandroid/bootstraps/sdl2/build

1 file changed

+3
-0
lines changed

pythonforandroid/bootstraps/sdl2/build/build.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,9 @@ def parse_args(args=None):
449449
if args.meta_data is None:
450450
args.meta_data = []
451451

452+
if args.services is None:
453+
args.services = []
454+
452455
if args.blacklist:
453456
with open(args.blacklist) as fd:
454457
patterns = [x.strip() for x in fd.read().splitlines()

0 commit comments

Comments
 (0)