Island: Reword warning in Version

This commit is contained in:
Mike Salvatore 2022-08-12 10:31:30 -04:00
parent 8788b258dd
commit af7eb23bef
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class Version:
try:
response = requests.get(url, timeout=LATEST_VERSION_TIMEOUT).json()
except requests.exceptions.RequestException as err:
logger.warning(f"Failed to connect to {url}: {err}")
logger.warning(f"Failed to fetch version information from {url}: {err}")
return self._version_number, None
try: