From: Chris Withers Date: Sat, 18 May 2013 07:51:24 +0000 (+0100) Subject: Add missing import that caused test_notice_logging to fail if this suite was run... X-Git-Tag: rel_0_8_2~69^2~1^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d630a2e6ef7031745509b641cdd9f81385c37d56;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add missing import that caused test_notice_logging to fail if this suite was run on its own. --- diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index e217eb0b81..4fd5bc9c12 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):