Commit e908255d831076e5b3651cb4c25d8002a85773c0
1 parent
ef52a495
Exists in
master
and in
68 other branches
FIX: Error save preset name in win64
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/dialogs.py
| ... | ... | @@ -368,7 +368,7 @@ def ShowSavePresetDialog(default_filename="raycasting"): |
| 368 | 368 | try: |
| 369 | 369 | if dlg.ShowModal() == wx.ID_OK: |
| 370 | 370 | filename = dlg.GetValue() |
| 371 | - except(wx._core.PyAssertionErro): | |
| 371 | + except(wx._core.PyAssertionError): | |
| 372 | 372 | filename = dlg.GetValue() |
| 373 | 373 | |
| 374 | 374 | return filename | ... | ... |