mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2835 from b6d/postgres_privs-fix
postgresql_privs: fix wrong codec specification
This commit is contained in:
commit
82e2b3028f
1 changed files with 3 additions and 1 deletions
|
@ -224,6 +224,7 @@ postgresql_privs: >
|
|||
|
||||
try:
|
||||
import psycopg2
|
||||
import psycopg2.extensions
|
||||
except ImportError:
|
||||
psycopg2 = None
|
||||
|
||||
|
@ -266,7 +267,8 @@ class Connection(object):
|
|||
|
||||
@property
|
||||
def encoding(self):
|
||||
return self.connection.encoding
|
||||
"""Connection encoding in Python-compatible form"""
|
||||
return psycopg2.extensions.encodings[self.connection.encoding]
|
||||
|
||||
|
||||
### Methods for querying database objects
|
||||
|
|
Loading…
Reference in a new issue