diff --git a/polybot/service.py b/polybot/service.py index 3d9991f..21ba05b 100644 --- a/polybot/service.py +++ b/polybot/service.py @@ -357,7 +357,7 @@ def auth(self): if self.login_ratelimit_expiry > time(): self.log.warning( "Not connecting to Bluesky as login rate limit is still active. " - "Will re-attempt connection in %s seconds.", + "Will re-attempt connection in %d seconds.", self.login_ratelimit_expiry - time(), ) return @@ -372,7 +372,7 @@ def auth(self): self.login_ratelimit_expiry = int(e.response.headers["ratelimit-reset"]) self.log.warning( "Rate-limited by Bluesky when connecting. " - "Will re-attempt connection in %s seconds.", + "Will re-attempt connection in %d seconds.", self.login_ratelimit_expiry - time(), ) return