From e2ad48cdf23b08265e36929e1c025751ade84c84 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Mon, 18 Aug 2014 12:11:56 -0400 Subject: [PATCH] fix typo when raising syntax error Change-Id: I4ddcacb912536dda23ac4d371ff5b06664588b99 --- gertty/search/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gertty/search/parser.py b/gertty/search/parser.py index e2a5d71..f2b2562 100644 --- a/gertty/search/parser.py +++ b/gertty/search/parser.py @@ -48,7 +48,7 @@ def SearchParser(): elif p[2] == 'or': p[0] = or_(p[1], p[3]) else: - raise SyntaxErro() + raise SyntaxError() def p_negative_expr(p): '''negative_expr : NOT expression