]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- still supporting py2.6 in 1.1 (!)
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 22 Aug 2017 13:41:40 +0000 (09:41 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 22 Aug 2017 13:41:40 +0000 (09:41 -0400)
Change-Id: Iaaababf83b9c3a6e4dc784fc9807bed01c90b69b

lib/sqlalchemy/testing/provision.py

index 1483a2ffcddcd8c1f01260f4b6202cfaa3c8f4b8..f62024084ad5e9267473d3d678e72535de7be50c 100644 (file)
@@ -307,7 +307,7 @@ def reap_oracle_dbs(idents_file):
                 "select u.username from all_users u where username "
                 "like 'TEST_%' and not exists (select username "
                 "from v$session where username=u.username)")
-            all_names = {username.lower() for (username, ) in to_reap}
+            all_names = set(username.lower() for (username, ) in to_reap)
             to_drop = set()
             for name in all_names:
                 if name.endswith("_ts1") or name.endswith("_ts2"):