Configtool: simplify board config parsing (a little bit).

There should be no functional change. Mostly done for consistency
with other, similar code sections.
This commit is contained in:
Markus Hitter 2016-06-01 21:38:02 +02:00
parent d49520c36d
commit 490e58a43c
1 changed files with 17 additions and 18 deletions

View File

@ -293,10 +293,9 @@ class BoardPanel(wx.Panel):
if self.parseCandidateValues(ln):
continue
elif self.parseDefineValue(ln):
if self.parseDefineValue(ln):
continue
else:
m = reDefTS.search(ln)
if m:
t = m.groups()