switch to use platform.machine for displaying architecture (issue: 20)

This commit is contained in:
Adnan Hodzic 2020-01-07 20:09:40 +01:00
parent d727f5ab76
commit 1218ffd8cb
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ def sysinfo():
print("Driver: " + driver)
# get cpu architecture
cpu_arch = pl.processor()
cpu_arch = pl.machine()
# get number of cores/logical CPU's
cpu_count = p.cpu_count()