MC: Save one indentation level

This commit is contained in:
Thomas Jarosch 2013-01-13 20:17:30 +01:00
parent 06a7d301e2
commit 017783a77e
1 changed files with 43 additions and 43 deletions

View File

@ -373,7 +373,7 @@ class MatchCompiler:
res = self.parseMatch(line, pos1)
if res == None:
break
else:
assert(len(res)>=3 or len(res) < 6) # assert that Token::find(simple)match has either 2, 3 or four arguments
g0 = res[0]
@ -406,7 +406,7 @@ class MatchCompiler:
res = re.match(r'\s*"([^"]*)"\s*$', pattern)
if res == None:
break # Non-const pattern - bailout
else:
pattern = res.group(1)
a3 = ''
if endToken: