Commit 7a44c725dfc267f39f2e2c7728cf3d744b429580
1 parent
f8fde166
Exists in
master
and in
68 other branches
FIX: Removed the exceeding commas
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
invesalius/gui/frame.py
... | ... | @@ -699,10 +699,10 @@ class ProjectToolBar(wx.ToolBar): |
699 | 699 | path = os.path.join(d, "file_save.png") |
700 | 700 | BMP_SAVE = wx.Bitmap(path, wx.BITMAP_TYPE_PNG) |
701 | 701 | |
702 | - path = os.path.join(d, "print.png"), | |
702 | + path = os.path.join(d, "print.png") | |
703 | 703 | BMP_PRINT = wx.Bitmap(path, wx.BITMAP_TYPE_PNG) |
704 | 704 | |
705 | - path = os.path.join(d, "tool_photo.png"), | |
705 | + path = os.path.join(d, "tool_photo.png") | |
706 | 706 | BMP_PHOTO = wx.Bitmap(path, wx.BITMAP_TYPE_PNG) |
707 | 707 | |
708 | 708 | # Create tool items based on bitmaps | ... | ... |