[Python-modules-commits] [python-vertica] 01/03: Import python-vertica_0.6.5.orig.tar.gz

Jean Baptiste Favre jbfavre-guest at moszumanska.debian.org
Mon Jun 27 19:25:11 UTC 2016


This is an automated email from the git hooks/post-receive script.

jbfavre-guest pushed a commit to branch master
in repository python-vertica.

commit 991ec5b54292eb7b299ac6f278368716d3aad8a7
Author: Jean Baptiste Favre <github at jbfavre.org>
Date:   Mon Jun 27 20:47:39 2016 +0200

    Import python-vertica_0.6.5.orig.tar.gz
---
 setup.py                             | 2 +-
 vertica_python/__init__.py           | 2 +-
 vertica_python/vertica/connection.py | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/setup.py b/setup.py
index d556e31..17452bd 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ opts = ReqOpts(None, 'git')
 # version should use the format 'x.x.x' (instead of 'vx.x.x')
 setup(
     name='vertica-python',
-    version='0.6.4',
+    version='0.6.5',
     description='A native Python client for the Vertica database.',
     author='Justin Berka, Alex Kim, Kenneth Tran',
     author_email='justin.berka at gmail.com, alex.kim at uber.com, tran at uber.com',
diff --git a/vertica_python/__init__.py b/vertica_python/__init__.py
index 5bd8e26..431deda 100644
--- a/vertica_python/__init__.py
+++ b/vertica_python/__init__.py
@@ -6,7 +6,7 @@ from vertica_python.vertica.connection import Connection
 # Main module for this library.
 
 # The version number of this library.
-version_info = (0, 6, 4)
+version_info = (0, 6, 5)
 
 __version__ = '.'.join(map(str, version_info))
 
diff --git a/vertica_python/vertica/connection.py b/vertica_python/vertica/connection.py
index eb70c4d..b4758e7 100644
--- a/vertica_python/vertica/connection.py
+++ b/vertica_python/vertica/connection.py
@@ -130,7 +130,7 @@ class Connection(object):
         return self.socket
 
     def ssl(self):
-        return self.socket is not None and isinstance(ssl.SSLSocket, self.socket)
+        return self.socket is not None and isinstance(self.socket, ssl.SSLSocket)
 
     def opened(self):
         return (self.socket is not None

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-vertica.git



More information about the Python-modules-commits mailing list