summaryrefslogtreecommitdiff
path: root/sqlparse
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2013-04-28 21:11:57 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2013-04-28 21:11:57 +0200
commit221435382e96c176f97cef0e9e5d0f0bef5a3662 (patch)
tree978f94a321e40030fbb122aed7031ac07ac95945 /sqlparse
parent4612902eb1a1fd13393f9c05af9610e4bb3d4083 (diff)
downloadsqlparse-221435382e96c176f97cef0e9e5d0f0bef5a3662.tar.gz
Fix typo in keyword list (fixes issue92).
Diffstat (limited to 'sqlparse')
-rw-r--r--sqlparse/keywords.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py
index 92a0b58..e1c66b9 100644
--- a/sqlparse/keywords.py
+++ b/sqlparse/keywords.py
@@ -423,7 +423,7 @@ KEYWORDS = {
'TABLE': tokens.Keyword,
'TABLE_NAME': tokens.Keyword,
- ' TEMP': tokens.Keyword,
+ 'TEMP': tokens.Keyword,
'TEMPLATE': tokens.Keyword,
'TEMPORARY': tokens.Keyword,
'TERMINATE': tokens.Keyword,