Update PgConn

This commit is contained in:
simon987 2023-05-26 14:09:45 -04:00
parent 3bd9f03996
commit 24230cdc1e
2 changed files with 2 additions and 2 deletions

View File

@ -316,10 +316,10 @@ class PgConn:
def __init__(self, logger=None, **kwargs):
self._conn_args = kwargs
self.conn = psycopg2.connect(**kwargs)
self.cur = self.conn.cursor()
self._logger = logger
def __enter__(self):
self.cur = self.conn.cursor()
return self
def exec(self, query_string, args=None):

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.86",
version="1.87",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",