We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a415cd commit dc9c9f7Copy full SHA for dc9c9f7
1 file changed
src/mapclient/application.py
@@ -22,6 +22,7 @@
22
import sys
23
import ctypes
24
import argparse
25
+import faulthandler
26
27
import locale
28
@@ -85,6 +86,7 @@ def windows_main(workflow, execute_now):
85
86
my_app_id = 'MusculoSkeletal.MAPClient' # arbitrary string
87
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(my_app_id)
88
89
+ faulthandler.enable()
90
# import the locale, and set the locale. This is used for
91
# locale-aware number to string formatting
92
locale.setlocale(locale.LC_ALL, '')
0 commit comments