diff --git a/objects/catalog.py b/objects/catalog.py index f4df7e04..57c08952 100644 --- a/objects/catalog.py +++ b/objects/catalog.py @@ -15,7 +15,7 @@ class CatalogMetaClass(type): """Meta class factory.""" providers = dict() new_attributes = dict() - for name, value in attributes.iteritems(): + for name, value in iteritems(attributes): if is_provider(value): providers[name] = value new_attributes[name] = value