diff -r 16c93928cfc5 -r 9de9373da5bb Plugins/ViewManagerPlugins/Listspace/Listspace.py --- a/Plugins/ViewManagerPlugins/Listspace/Listspace.py Sat Nov 02 11:55:46 2013 +0100 +++ b/Plugins/ViewManagerPlugins/Listspace/Listspace.py Wed Nov 06 19:23:06 2013 +0100 @@ -527,7 +527,7 @@ elif editor.hasSyntaxErrors(): self.viewlist.item(index).setIcon( UI.PixmapCache.getIcon("syntaxError.png")) - elif editor.hasFlakesWarnings(): + elif editor.hasWarnings(): self.viewlist.item(index).setIcon( UI.PixmapCache.getIcon("warning.png")) else: @@ -547,7 +547,7 @@ if editor.hasSyntaxErrors(): self.viewlist.item(index).setIcon( UI.PixmapCache.getIcon("syntaxError.png")) - elif editor.hasFlakesWarnings(): + elif editor.hasWarnings(): self.viewlist.item(index).setIcon( UI.PixmapCache.getIcon("warning.png")) elif editor.isModified():