Skip to content

Commit

Permalink
fix: Fix missing space in error message. (#821)
Browse files Browse the repository at this point in the history
Added missing space in the log message.
  • Loading branch information
gor-obr authored and busunkim96 committed Aug 16, 2021
1 parent b69a6e3 commit cd52a08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google/auth/compute_engine/_metadata.py
Expand Up @@ -97,7 +97,7 @@ def ping(request, timeout=_METADATA_DEFAULT_TIMEOUT, retry_count=3):

except exceptions.TransportError as e:
_LOGGER.warning(
"Compute Engine Metadata server unavailable on"
"Compute Engine Metadata server unavailable on "
"attempt %s of %s. Reason: %s",
retries + 1,
retry_count,
Expand Down Expand Up @@ -152,7 +152,7 @@ def get(

except exceptions.TransportError as e:
_LOGGER.warning(
"Compute Engine Metadata server unavailable on"
"Compute Engine Metadata server unavailable on "
"attempt %s of %s. Reason: %s",
retries + 1,
retry_count,
Expand Down

0 comments on commit cd52a08

Please sign in to comment.