diff options
author | Simon Glass | 2014-12-01 17:34:03 -0700 |
---|---|---|
committer | Simon Glass | 2015-01-14 21:16:54 -0800 |
commit | 7024ab6316ab18db8d1a25204a240111548357b4 (patch) | |
tree | 595294ff29d0d5aafde947cab011e18d6c3b4e6d /tools | |
parent | 620053421c1a346259bcd07db08c54cca99349ac (diff) |
buildman: Don't complain about missing sections in ~/.buildman
Silently ignore this since it is valid to have missing sections.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/buildman/bsettings.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/buildman/bsettings.py b/tools/buildman/bsettings.py index fdd875b0736..9eb9b2bd53a 100644 --- a/tools/buildman/bsettings.py +++ b/tools/buildman/bsettings.py @@ -40,7 +40,6 @@ def GetItems(section): try: return settings.items(section) except ConfigParser.NoSectionError as e: - print e return [] except: raise |