Commit b1d4e29d132e9c6d265e799b545ee5791ba1573e
1 parent
77eeee89
Exists in
master
and in
68 other branches
FIX: Bug in the code (two ',')
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
invesalius/gui/dialogs.py
... | ... | @@ -256,7 +256,7 @@ def SaveChangesDialog(filename): |
256 | 256 | "Save changes to "+filename+"?", |
257 | 257 | wx.ICON_QUESTION | wx.YES_NO | wx.CANCEL) |
258 | 258 | else: |
259 | - dlg = wx.MessageDialog(None, "Save changes to "+filename+"?",, | |
259 | + dlg = wx.MessageDialog(None, "Save changes to "+filename+"?", | |
260 | 260 | "InVesalius 3", |
261 | 261 | wx.ICON_QUESTION | wx.YES_NO | wx.CANCEL) |
262 | 262 | ... | ... |