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>
This commit is contained in:
Simon Glass 2014-12-01 17:34:03 -07:00
parent 620053421c
commit 7024ab6316

View File

@ -40,7 +40,6 @@ def GetItems(section):
try:
return settings.items(section)
except ConfigParser.NoSectionError as e:
print e
return []
except:
raise