diff --git a/docs/en_US/release_notes_8_10.rst b/docs/en_US/release_notes_8_10.rst index 121992345..b0931ad78 100644 --- a/docs/en_US/release_notes_8_10.rst +++ b/docs/en_US/release_notes_8_10.rst @@ -51,6 +51,7 @@ Bug fixes | `Issue #7626 `_ - Fixed an issue where theme preview under theme options was broken in pgAdmin server mode. | `Issue #7627 `_ - Fixed an issue where users could not autofill their saved passwords in the connect server dialog in the browser. | `Issue #7638 `_ - Fixed an issue where Generate Script button should be disabled if no objects are selected in the schema diff result. + | `Issue #7639 `_ - Fixed an issue where ERD Open/Save shorcuts were not working on Windows/Linux. | `Issue #7660 `_ - Add a precautionary check for the query tool connection cursor to fix the error 'NoneType' object has no attribute '_query'. | `Issue #7662 `_ - Fixed an issue where boolean values in node details of graphical explain plan were not interpreted correctly. | `Issue #7663 `_ - Fixed an issue where Reassign/Drop Owned dialog not opening for Role. diff --git a/web/pgacloud/utils/misc.py b/web/pgacloud/utils/misc.py index a5722b231..fe368f159 100644 --- a/web/pgacloud/utils/misc.py +++ b/web/pgacloud/utils/misc.py @@ -11,12 +11,12 @@ import secrets import string import urllib3 import ipaddress -from pgadmin.utils.constants import IP_ADDRESS_STRING def get_my_ip(): """ Return the public IP of this host """ http = urllib3.PoolManager() + IP_ADDRESS_STRING = '{}/{}' try: external_ip = http.request('GET', 'https://ident.me').data except Exception: