aboutsummaryrefslogtreecommitdiff
path: root/parsertest.py
diff options
context:
space:
mode:
Diffstat (limited to 'parsertest.py')
-rwxr-xr-xparsertest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/parsertest.py b/parsertest.py
index a3f3a68..7a9e663 100755
--- a/parsertest.py
+++ b/parsertest.py
@@ -55,7 +55,7 @@ class Lexer:
('string', re.compile("'[^']*?'")),
('comma', re.compile(r',')),
('dot', re.compile(r'\.')),
- ('semicolon', re.compile(r':')),
+ ('colon', re.compile(r':')),
('assign', re.compile(r'==')),
('equal', re.compile(r'=')),
('nequals', re.compile(r'\!=')),