E5Gui/E5ErrorMessage.py

changeset 4241
545629046c45
parent 4021
195a471c327b
child 4566
a2e8f3c420ec
child 4632
ca310db386ed
equal deleted inserted replaced
4239:4883661fc427 4241:545629046c45
53 53
54 @param message message to be checked (string) 54 @param message message to be checked (string)
55 @return flag indicating that the message should be filtered out 55 @return flag indicating that the message should be filtered out
56 (boolean) 56 (boolean)
57 """ 57 """
58 for filter in self.settings.value( 58 for filter in Globals.toList(self.settings.value(
59 "MessageFilters", self.__defaultFilters): 59 "MessageFilters", self.__defaultFilters)):
60 if filter in message: 60 if filter in message:
61 return True 61 return True
62 62
63 return False 63 return False
64 64

eric ide

mercurial