summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/plugable.py3
1 files changed, 2 insertions, 1 deletions
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]