--- a/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Sat Aug 09 18:16:12 2014 +0200 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/NamingStyleChecker.py Thu Aug 21 18:50:41 2014 +0200 @@ -408,7 +408,7 @@ # we got a package packageName = \ os.path.split(os.path.dirname(self.__filename))[1] - if packageName.lower != packageName: + if packageName.lower() != packageName: yield self.__error(node, "N808") def __checkImportAs(self, node, parents):