aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass2019-07-08 13:18:24 -0600
committerSimon Glass2019-07-23 20:27:57 -0700
commit452285294f2cfad4fef8c605edb9fc69b9e159b8 (patch)
tree7ec79143d0c284ed62efe5bf09f6dbb7bd8fc34d /tools
parent512f4550d29547819ef41c7aa39689dafde5afef (diff)
binman: Fix comment in bsection.GetEntries()
This comment is out of date as it does not correctly describe the return value. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/binman/bsection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/binman/bsection.py b/tools/binman/bsection.py
index 03dfa2f805c..a3026718794 100644
--- a/tools/binman/bsection.py
+++ b/tools/binman/bsection.py
@@ -399,10 +399,10 @@ class Section(object):
raise ValueError("%s: No such property '%s'" % (msg, prop_name))
def GetEntries(self):
- """Get the number of entries in a section
+ """Get the dict of entries in a section
Returns:
- Number of entries in a section
+ OrderedDict of entries in a section
"""
return self._entries