diff options
Diffstat (limited to 'doc/build/components/pydoc.myt')
-rw-r--r-- | doc/build/components/pydoc.myt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/components/pydoc.myt b/doc/build/components/pydoc.myt index 8d09f8bca..5cb58628b 100644 --- a/doc/build/components/pydoc.myt +++ b/doc/build/components/pydoc.myt @@ -16,8 +16,8 @@ name= obj.__name__ if not isclass: - if hasattr(obj, '__ALL__'): - objects = obj.__ALL__ + if hasattr(obj, '__all__'): + objects = obj.__all__ sort = True else: objects = obj.__dict__.keys() |