Commit e908255d831076e5b3651cb4c25d8002a85773c0

Authored by Paulo Henrique Junqueira Amorim
1 parent ef52a495

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,7 +368,7 @@ def ShowSavePresetDialog(default_filename="raycasting"):
368 try: 368 try:
369 if dlg.ShowModal() == wx.ID_OK: 369 if dlg.ShowModal() == wx.ID_OK:
370 filename = dlg.GetValue() 370 filename = dlg.GetValue()
371 - except(wx._core.PyAssertionErro): 371 + except(wx._core.PyAssertionError):
372 filename = dlg.GetValue() 372 filename = dlg.GetValue()
373 373
374 return filename 374 return filename