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 committed Aug 3, 2021
1 parent e4eab27 commit 7b03988
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google/auth/compute_engine/_metadata.py
Expand Up @@ -95,7 +95,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 @@ -150,7 +150,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 7b03988

Please sign in to comment.