From 1185d4bc5f98c175ee9b6013034dea2c456c39b5 Mon Sep 17 00:00:00 2001 From: YoursFunny Date: Fri, 22 Mar 2024 22:26:31 +0800 Subject: [PATCH] fix logger --- tweet.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tweet.py b/tweet.py index e5e91c7..907bf00 100644 --- a/tweet.py +++ b/tweet.py @@ -11,7 +11,7 @@ from telegram import ( from common import x_url_regex, x_media_regex, x_tco_regex, logger twimg_url = 'https://pbs.twimg.com/' -vx_api_url = 'https://api.vxtwitter.com/status/{0}/status/{1}' +vx_api_url = 'https://api.vxtwitter.com/{0}/status/{1}' message_raw_text = """{url} {author}: {text} @@ -32,7 +32,7 @@ class TweetMedia: self._type: str = media_type def __str__(self): - return f"url: {self.url}, thumb: {self.thumb}, type: {self.type}" + return f"Media[url: {self.url}, thumb: {self.thumb}, type: {self.type}]" @property def _uri(self) -> str | None: @@ -118,7 +118,7 @@ class TGTweet(Tweet): async def __aenter__(self): self._tweet: dict = await self._fetch_tweet(self._api_param) super().__init__(*self._init_properties) - logger.info(f"Media: {self.media}") + logger.info("Media: {0}".format(str(m) for m in self.media)) return self async def __aexit__(self, exc_type, exc_val, exc_tb):