Skip to content

Commit

Permalink
Remove debugging line
Browse files Browse the repository at this point in the history
  • Loading branch information
strk committed Jan 9, 2020
1 parent bb12bf2 commit 285a984
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/db_manager/db_plugins/postgis/connector.py
Expand Up @@ -63,7 +63,6 @@ def __init__(self, connection, sql=None):
self.result = None
self.closed = False
self.description = None
print ("XXX CursorProxy initialized with sql " + sql)
if (self.sql != None):
self._execute()

Expand All @@ -78,6 +77,8 @@ def _toStrResultSet(self, res):
#print("XXX qvariant type of " + str(col)+ " is " + str(col.type))
if (str(col) == 'NULL'):
col = None
else:
col = str(col) # force to string
newrec.append(col)
newres.append(newrec)
return newres
Expand Down

0 comments on commit 285a984

Please sign in to comment.