diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2013-04-28 21:11:57 +0200 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2013-04-28 21:11:57 +0200 |
| commit | 221435382e96c176f97cef0e9e5d0f0bef5a3662 (patch) | |
| tree | 978f94a321e40030fbb122aed7031ac07ac95945 /sqlparse | |
| parent | 4612902eb1a1fd13393f9c05af9610e4bb3d4083 (diff) | |
| download | sqlparse-221435382e96c176f97cef0e9e5d0f0bef5a3662.tar.gz | |
Fix typo in keyword list (fixes issue92).
Diffstat (limited to 'sqlparse')
| -rw-r--r-- | sqlparse/keywords.py | 2 |
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, |
