Hi,

PFA minor patch to fix the issue in query tool result polling causing
exception,
*ValueError: too many values to unpack*
RM#2470

--
Regards,
Murtuza Zabuawala
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
diff --git a/web/pgadmin/utils/driver/psycopg2/__init__.py 
b/web/pgadmin/utils/driver/psycopg2/__init__.py
index 502cee4..1331b26 100644
--- a/web/pgadmin/utils/driver/psycopg2/__init__.py
+++ b/web/pgadmin/utils/driver/psycopg2/__init__.py
@@ -1234,7 +1234,7 @@ Failed to reset the connection to the server due to 
following error:
         if not cur:
             return False, gettext(
                 "Cursor could not be found for the async connection."
-            ), None
+            )
 
         current_app.logger.log(
             25,
-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers

Reply via email to