mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Add debug output for 32bit calibre on 64bit windows
This commit is contained in:
parent
a8237e30ea
commit
37e969502b
@ -150,6 +150,13 @@ def print_basic_debug_info(out=None):
|
||||
out(__appname__, get_version(), 'Portable' if isportable else '',
|
||||
'isfrozen:', isfrozen, 'is64bit:', is64bit)
|
||||
out(platform.platform(), platform.system(), platform.architecture())
|
||||
if iswindows and not is64bit:
|
||||
try:
|
||||
import win32process
|
||||
if win32process.IsWow64Process():
|
||||
out('32bit process running on 64bit windows')
|
||||
except:
|
||||
pass
|
||||
out(platform.system_alias(platform.system(), platform.release(),
|
||||
platform.version()))
|
||||
out('Python', platform.python_version())
|
||||
|
Loading…
x
Reference in New Issue
Block a user