Fix Query Tool error messages for psycopg3 driver.

This commit is contained in:
Khushboo Vashi
2023-02-22 14:07:05 +05:30
committed by GitHub
parent 9abbd30790
commit b640df5bdd
2 changed files with 4 additions and 4 deletions

View File

@@ -1635,7 +1635,7 @@ Failed to reset the connection to the server due to following error:
# Do not append if error starts with `ERROR:` as most pg related
# error starts with `ERROR:`
if not errmsg.startswith('ERROR:'):
errmsg = gettext('ERROR: ') + errmsg + '\n\n'
errmsg = gettext('ERROR: ') + errmsg + ' \n\n'
if exception_obj.diag.severity is not None \
and exception_obj.diag.message_primary is not None: