summaryrefslogtreecommitdiff
path: root/tools/binman/entry.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/binman/entry.py')
-rw-r--r--tools/binman/entry.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py
index 00bb1d190a..a04e149d96 100644
--- a/tools/binman/entry.py
+++ b/tools/binman/entry.py
@@ -513,6 +513,8 @@ features to produce new behaviours.
modules.remove('_testing')
missing = []
for name in modules:
+ if name.startswith('__'):
+ continue
module = Entry.Lookup(name, name)
docs = getattr(module, '__doc__')
if test_missing == name: