diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2009-05-06 07:23:54 +0200 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2009-05-06 07:23:54 +0200 |
| commit | 423b839b8c12bc6215ee15683abbd18b4e7162e3 (patch) | |
| tree | 72314070a165f9189eb1003a714ec55837493b53 /sqlparse/__init__.py | |
| parent | 4fb9cb894e93c42a919ccd714d9a4a7d5ed2e940 (diff) | |
| download | sqlparse-423b839b8c12bc6215ee15683abbd18b4e7162e3.tar.gz | |
Removed logging stuff that was only needed for debugging on AppEngine.
Diffstat (limited to 'sqlparse/__init__.py')
| -rw-r--r-- | sqlparse/__init__.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sqlparse/__init__.py b/sqlparse/__init__.py index 30e0679..450a244 100644 --- a/sqlparse/__init__.py +++ b/sqlparse/__init__.py @@ -9,14 +9,9 @@ __version__ = '0.1.0' -import logging import os -if 'SQLPARSE_DEBUG' in os.environ: - logging.basicConfig(level=logging.DEBUG) - - class SQLParseError(Exception): """Base class for exceptions in this module.""" |
