diff --git a/docs/en_US/release_notes_6_15.rst b/docs/en_US/release_notes_6_15.rst index 3b24398e0..675fbdbe6 100644 --- a/docs/en_US/release_notes_6_15.rst +++ b/docs/en_US/release_notes_6_15.rst @@ -39,4 +39,5 @@ Bug fixes | `Issue #5327 `_ - Fixed an issue where user was unable to select privileges in Safari. | `Issue #5338 `_ - Fixed an issue where the prompt is not visible when clicking on the 'save results to file' button on the large data. | `Issue #5352 `_ - Fixed error occurring while LDAP authentication for a user with multiple email attributes. + | `Issue #5367 `_ - Ensure that the correct value should be returned if an exception occurs while decoding the password. | `Issue #5368 `_ - Fixed the issue while downloading the file from the file manager. diff --git a/web/pgadmin/utils/driver/psycopg2/connection.py b/web/pgadmin/utils/driver/psycopg2/connection.py index 5db6edbd4..65bbe4a3a 100644 --- a/web/pgadmin/utils/driver/psycopg2/connection.py +++ b/web/pgadmin/utils/driver/psycopg2/connection.py @@ -244,7 +244,7 @@ class Connection(BaseConnection): return True, \ _( "Failed to decrypt the saved password.\nError: {0}" - ).format(str(e)) + ).format(str(e)), password return False, '', password def connect(self, **kwargs):