Skip to content

Commit 8021207

Browse files
committed
add back missing bracket
1 parent bc29973 commit 8021207

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

android-configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ except ImportError:
2222
from distutils.spawn import find_executable as which
2323

2424
print('Node.js android configure: Found Python {}.{}.{}...'.format(*sys.version_info))
25-
acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10)
25+
acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10))
2626
if sys.version_info[:2] in acceptable_pythons:
2727
import android_configure
2828
else:

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ except ImportError:
2222
from distutils.spawn import find_executable as which
2323

2424
print('Node.js configure: Found Python {}.{}.{}...'.format(*sys.version_info))
25-
acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10)
25+
acceptable_pythons = ((3, 14), (3, 13), (3, 12), (3, 11), (3, 10))
2626
if sys.version_info[:2] in acceptable_pythons:
2727
import configure
2828
else:

0 commit comments

Comments
 (0)