add missing assignment

This commit is contained in:
Jan Dittberner 2015-01-09 22:12:51 +01:00
parent 6122164990
commit 0b1249ed5d

View file

@ -39,6 +39,7 @@ class Ident(object):
if not self.ident_quoted:
with self._conn.cursor() as curs:
curs.execute("SELECT quote_ident(%s)", (self.ident,))
self.ident_quoted = curs.fetchone()[0]
return self.ident_quoted
def __str__(self):