Skip to content

Commit e4a5192

Browse files
committed
Fix syntax
1 parent 77f952c commit e4a5192

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def GuessOS():
7373
def GuessArchitecture():
7474
id = platform.machine()
7575
id = id.lower() # Windows 7 capitalizes 'AMD64'.
76-
if id.startswith('armv6') # Can return 'armv6l'.
76+
if id.startswith('armv6'): # Can return 'armv6l'.
7777
return 'armv6'
7878
elif id.startswith('arm') or id == 'aarch64':
7979
return 'arm'

0 commit comments

Comments
 (0)