Merge "Raise NotImplementedError, not NotImplemented singleton"

This commit is contained in:
Jenkins
2012-07-19 00:12:38 +00:00
committed by Gerrit Code Review

View File

@@ -28,7 +28,7 @@ class BaseHostFilter(object):
"""Base class for host filters."""
def host_passes(self, host_state, filter_properties):
raise NotImplemented()
raise NotImplementedError()
def _full_name(self):
"""module.classname of the filter."""