diff --git a/ipalib/plugable.py b/ipalib/plugable.py index c58114a94..b8d2b3906 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -532,7 +532,8 @@ class NameSpace(DictProxy): def __call__(self): """ - Iterates through the members of this NameSpace. + Iterates (in ascending order by name) through the members in this + NameSpace. """ for key in self: yield self[key]