mirror of https://github.com/kivy/pyjnius.git
Adding missing commas
I was sure I'm will miss something..
This commit is contained in:
parent
c999bb38bd
commit
38d1a56e7b
4
setup.py
4
setup.py
|
@ -113,9 +113,9 @@ else:
|
||||||
|
|
||||||
# This dictionary converts values from platform.machine() to a "cpu" string.
|
# This dictionary converts values from platform.machine() to a "cpu" string.
|
||||||
# It is needed to set the correct lib path, found in the jre_home, eg. <jre_home>/lib/<cpu>/.
|
# It is needed to set the correct lib path, found in the jre_home, eg. <jre_home>/lib/<cpu>/.
|
||||||
machine2cpu = {"i686" : "i386"
|
machine2cpu = {"i686" : "i386",
|
||||||
"x86_64" : "amd64",
|
"x86_64" : "amd64",
|
||||||
"armv7l" : "arm"
|
"armv7l" : "arm",
|
||||||
}
|
}
|
||||||
if machine() in machine2cpu.keys():
|
if machine() in machine2cpu.keys():
|
||||||
cpu = machine2cpu[machine()]
|
cpu = machine2cpu[machine()]
|
||||||
|
|
Loading…
Reference in New Issue