Skip to content

Commit 910df0a

Browse files
authored
Correct check for --sdk option (kivy#2870)
1 parent 8f536b4 commit 910df0a

File tree

1 file changed

+1
-1
lines changed
  • pythonforandroid/bootstraps/common/build

1 file changed

+1
-1
lines changed

pythonforandroid/bootstraps/common/build/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ def _read_configuration():
10061006
print('Billing not yet supported!')
10071007
sys.exit(1)
10081008

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

0 commit comments

Comments
 (0)