summaryrefslogtreecommitdiff
path: root/sqlparse/formatter.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2012-11-03 12:45:52 +0100
committerAndi Albrecht <albrecht.andi@gmail.com>2012-11-03 12:45:52 +0100
commitc67a742e01ee7084ffd6ec0d531b96e343e6a5a5 (patch)
tree6b03ac07bb5aa47af1d6c3bbf521561c7b591828 /sqlparse/formatter.py
parent0a877102119d4738369c1464107123f3f9e6978d (diff)
downloadsqlparse-c67a742e01ee7084ffd6ec0d531b96e343e6a5a5.tar.gz
Move SQLParseError to proper location and start deprecation of sqlparse.SQLParseError.
Diffstat (limited to 'sqlparse/formatter.py')
-rw-r--r--sqlparse/formatter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/formatter.py b/sqlparse/formatter.py
index 5be6652..8761c16 100644
--- a/sqlparse/formatter.py
+++ b/sqlparse/formatter.py
@@ -5,8 +5,8 @@
"""SQL formatter"""
-from sqlparse import SQLParseError
from sqlparse import filters
+from sqlparse.exceptions import SQLParseError
def validate_options(options):