summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
authorChris Withers <chris@simplistix.co.uk>2013-05-18 08:51:24 +0100
committerChris Withers <chris@simplistix.co.uk>2013-05-26 13:05:53 +0100
commitd630a2e6ef7031745509b641cdd9f81385c37d56 (patch)
treeb546b121f956a3cf4d0d5473f7cddac2c59c99b0 /test/dialect/test_postgresql.py
parent0a34160bf76687efbabcf8c5a3cc89f26b801f7f (diff)
downloadsqlalchemy-d630a2e6ef7031745509b641cdd9f81385c37d56.tar.gz
Add missing import that caused test_notice_logging to fail if this suite was run on its own.
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r--test/dialect/test_postgresql.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py
index e217eb0b8..4fd5bc9c1 100644
--- a/test/dialect/test_postgresql.py
+++ b/test/dialect/test_postgresql.py
@@ -23,6 +23,7 @@ from sqlalchemy import util
from sqlalchemy.testing.util import round_decimal
from sqlalchemy.sql import table, column, operators
import logging
+import logging.handlers
import re
class SequenceTest(fixtures.TestBase, AssertsCompiledSQL):