From f742875e0d9e2c2ceb126e3dc7c81fb5bc6ce35b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Thu, 23 Jul 2020 08:20:49 +0200 Subject: [PATCH] Fix text error when getting getting external IP in route53 (#38100) --- homeassistant/components/route53/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/route53/__init__.py b/homeassistant/components/route53/__init__.py index 1656ca393bf..5355ed15f38 100644 --- a/homeassistant/components/route53/__init__.py +++ b/homeassistant/components/route53/__init__.py @@ -84,7 +84,7 @@ def _update_route53( # Get the IP Address and build an array of changes try: - ipaddress = requests.get("https://api.ipify.org/", timeout=5).text() + ipaddress = requests.get("https://api.ipify.org/", timeout=5).text except requests.RequestException: _LOGGER.warning("Unable to reach the ipify service")