diff -r dea107dce0c4 -r 750eeb7230a1 dialogs/ProjectDialog.py --- a/dialogs/ProjectDialog.py Mon Aug 14 21:31:01 2017 +0300 +++ b/dialogs/ProjectDialog.py Mon Aug 14 22:23:17 2017 +0300 @@ -66,9 +66,9 @@ if i == 0: text += item elif i == len(error) - 1: - text += _(" and %s")%item + text += _(" and %s") % item else: - text += ", %s"%item + text += ", %s" % item dialog = wx.MessageDialog(self, _("Form isn't complete. %s must be filled!") % text, _("Error"), wx.OK|wx.ICON_ERROR)