]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- Fixed an import of "logging" in test_execute which was not
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 2 Mar 2013 21:20:49 +0000 (16:20 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 2 Mar 2013 21:20:49 +0000 (16:20 -0500)
working on some linux platforms.  Also in 0.7.11.
- only need "logging.handlers" here, "logging" comes in implicitly

1  2 
doc/build/changelog/changelog_08.rst
test/engine/test_execute.py

index 218700ba8f355cfcb94d3fbabbcd1b2cac637ebe,218700ba8f355cfcb94d3fbabbcd1b2cac637ebe..4d388b2b08d51113afd7baa6270f5b9c0e051b14
@@@ -6,6 -6,6 +6,14 @@@
  .. changelog::
      :version: 0.8.0
  
++    .. change::
++        :tags: bug, tests
++        :tickets: 2669
++        :pullreq: 41
++
++      Fixed an import of "logging" in test_execute which was not
++      working on some linux platforms.  Also in 0.7.11.
++
      .. change::
          :tags: bug, orm
          :tickets: 2662
index 69507eabe37cc1bfb0e1a3cde4f80aef0f7ea284,f604adb82bfc572ef1ef1502d36205da4f93ec37..447324d6e9fa775a415065d831d45343ba8602c2
@@@ -13,7 -13,7 +13,7 @@@ import sqlalchemy as ts
  from sqlalchemy import testing
  from sqlalchemy.testing import engines
  from sqlalchemy.testing.engines import testing_engine
- import logging
 -import logging, logging.handlers
++import logging.handlers
  from sqlalchemy.dialects.oracle.zxjdbc import ReturningParam
  from sqlalchemy.engine import result as _result, default
  from sqlalchemy.engine.base import Connection, Engine