Skip to content

Commit

Permalink
Correct check for --sdk option (kivy#2870)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian-O authored Jul 29, 2023
1 parent 8f536b4 commit 910df0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonforandroid/bootstraps/common/build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ def _read_configuration():
print('Billing not yet supported!')
sys.exit(1)

if args.sdk_version == -1:
if args.sdk_version != -1:
print('WARNING: Received a --sdk argument, but this argument is '
'deprecated and does nothing.')
args.sdk_version = -1 # ensure it is not used
Expand Down

0 comments on commit 910df0a

Please sign in to comment.