diff -r c3c3d1318130 -r 69dfdb26f600 Beremiz_service.py --- a/Beremiz_service.py Tue Aug 15 17:01:51 2017 +0300 +++ b/Beremiz_service.py Tue Aug 15 22:38:43 2017 +0300 @@ -189,14 +189,14 @@ class ParamsEntryDialog(wx.TextEntryDialog): if wx.VERSION < (2, 6, 0): - def Bind(self, event, function, id = None): + def Bind(self, event, function, id=None): if id is not None: event(self, id, function) else: event(self, function) - def __init__(self, parent, message, caption = _("Please enter text"), defaultValue = "", - style = wx.OK|wx.CANCEL|wx.CENTRE, pos = wx.DefaultPosition): + def __init__(self, parent, message, caption=_("Please enter text"), defaultValue="", + style=wx.OK|wx.CANCEL|wx.CENTRE, pos=wx.DefaultPosition): wx.TextEntryDialog.__init__(self, parent, message, caption, defaultValue, style, pos) self.Tests = []