Skip to content

Commit

Permalink
fix: Fix missing space in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
gor-obr committed Aug 3, 2021
1 parent 73cbc1f commit dc0ec63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google/auth/compute_engine/_metadata.py
Original file line number Diff line number Diff line change
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 dc0ec63

Please sign in to comment.