mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where error message from the database server need space between two sentences. #8165
This commit is contained in:
@@ -1680,7 +1680,7 @@ Failed to reset the connection to the server due to following error:
|
||||
elif hasattr(exception_obj, 'diag') and \
|
||||
hasattr(exception_obj.diag, 'message_detail') and\
|
||||
exception_obj.diag.message_detail is not None:
|
||||
errmsg = exception_obj.diag.message_detail + \
|
||||
errmsg = exception_obj.diag.message_detail + '\n' + \
|
||||
exception_obj.diag.message_primary
|
||||
else:
|
||||
errmsg = str(exception_obj)
|
||||
|
||||
Reference in New Issue
Block a user