Adding missing commas

I was sure I'm will miss something..
This commit is contained in:
Thomas-Karl Pietrowski 2015-11-19 18:56:54 +01:00
parent c999bb38bd
commit 38d1a56e7b
1 changed files with 2 additions and 2 deletions

View File

@ -113,9 +113,9 @@ else:
# 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>/.
machine2cpu = {"i686" : "i386"
machine2cpu = {"i686" : "i386",
"x86_64" : "amd64",
"armv7l" : "arm"
"armv7l" : "arm",
}
if machine() in machine2cpu.keys():
cpu = machine2cpu[machine()]