Commit fc5b4732 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Nitpicking

parent 2bb8ddef
......@@ -51,6 +51,7 @@
-emacro(731, assert) // booelan arg to eq/non-eq
-emacro(731, xxxassert) // arg to eq/non-eq
-emacro(527, WRONG) // unreachable code
-emacro(774, VALID_OBJ) // boolean always true
///////////////////////////////////////////////////////////////////////
// <vsb.h>
......
......@@ -743,8 +743,8 @@ class FileSection(object):
if re.match("['\"]", l):
m = re.match("(['\"]).*?(\\1)", l)
if not m:
raise FormatError("Unbalanced quote",
"Unbalanced quote on line %d" % ln)
raise FormatError("Unbalanced quote",
"Unbalanced quote on line %d" % ln)
self.tl.append(Token(ln, 0, l[:m.end()]))
self.l.insert(0, (ln, l[m.end():]))
return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment