diff -r fe07a9f16f23 -r 5c677a7f7d51 Preferences/ConfigurationPages/CooperationPage.py --- a/Preferences/ConfigurationPages/CooperationPage.py Fri Apr 13 22:32:32 2018 +0200 +++ b/Preferences/ConfigurationPages/CooperationPage.py Sat Apr 14 15:08:24 2018 +0200 @@ -31,9 +31,9 @@ self.setObjectName("CooperationPage") self.__bannedUserValidator = QRegExpValidator( - QRegExp("[a-zA-Z0-9.-]+@" - "(?:(?:2(?:[0-4][0-9]|5[0-5])|[01]?[0-9]{1,2})\.){3}" - "(?:2(?:[0-4][0-9]|5[0-5])|[01]?[0-9]{1,2})"), + QRegExp(r"[a-zA-Z0-9.-]+@" + r"(?:(?:2(?:[0-4][0-9]|5[0-5])|[01]?[0-9]{1,2})\.){3}" + r"(?:2(?:[0-4][0-9]|5[0-5])|[01]?[0-9]{1,2})"), self.bannedUserEdit) self.bannedUserEdit.setValidator(self.__bannedUserValidator)