diff -r 45d6f5fba016 -r 6046ffa2280f Beremiz_service.py --- a/Beremiz_service.py Wed Aug 16 12:03:46 2017 +0300 +++ b/Beremiz_service.py Wed Aug 16 12:21:05 2017 +0300 @@ -310,7 +310,7 @@ ip_addr = '' if ip_addr is None else ip_addr dlg = ParamsEntryDialog(None, _("Enter the IP of the interface to bind"), defaultValue=ip_addr) dlg.SetTests([(re.compile('\d{1,3}(?:\.\d{1,3}){3}$').match, _("IP is not valid!")), - ( lambda x:len([x for x in x.split(".") if 0 <= int(x) <= 255]) == 4, _("IP is not valid!")) + (lambda x:len([x for x in x.split(".") if 0 <= int(x) <= 255]) == 4, _("IP is not valid!")) ]) if dlg.ShowModal() == wx.ID_OK: self.pyroserver.ip_addr = dlg.GetValue()