Skip to content

Commit

Permalink
Adding missing commas
Browse files Browse the repository at this point in the history
I was sure I'm will miss something..
  • Loading branch information
thopiekar committed Nov 19, 2015
1 parent c999bb3 commit 38d1a56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -113,9 +113,9 @@ def getenv(key):

# 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()]
Expand Down

0 comments on commit 38d1a56

Please sign in to comment.