mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Improve the logic for Bad handling of missing connection database server RM #1387
This commit is contained in:
committed by
Akshay Joshi
parent
8b61aa49d0
commit
8ac65070bc
@@ -818,7 +818,7 @@ class ServerNode(PGChildNodeView):
|
||||
'servers/password.html',
|
||||
server_label=server.name,
|
||||
username=server.username,
|
||||
errmsg=e.message if e.message else str(e),
|
||||
errmsg=getattr(e, 'message', str(e)),
|
||||
_=gettext
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user