Island: Fix string formatting in _send_analytics()

This commit is contained in:
Mike Salvatore 2022-08-12 10:20:30 -04:00
parent 6dc29e36e2
commit 617d101af2
1 changed files with 3 additions and 3 deletions

View File

@ -192,10 +192,10 @@ def _send_analytics(di_container):
try:
response = requests.get(url).json()
logger.info(
f"Version number and deployment type was sent to analytics server."
f" The response is: {response}"
f"Version number and deployment type was sent to analytics server. "
f"The response is: {response}"
)
except requests.exceptions.ConnectionError as err:
logger.info(
f"Failed to send deployment type and version " f"number to the analytics server: {err}"
f"Failed to send deployment type and version number to the analytics server: {err}"
)