[weibo] fix URLs generated by 'user' extractor (#2601)

This commit is contained in:
Mike Fährmann
2022-06-05 21:37:57 +02:00
parent c2d117163f
commit 61cbf8318c
2 changed files with 2 additions and 2 deletions

View File

@@ -200,7 +200,7 @@ class WeiboUserExtractor(WeiboExtractor):
)
def items(self):
base = " {}/u/{}?tabtype=".format(self.root, self._user_id())
base = "{}/u/{}?tabtype=".format(self.root, self._user_id())
return self._dispatch_extractors((
(WeiboHomeExtractor , base + "home"),
(WeiboFeedExtractor , base + "feed"),

View File

@@ -6,4 +6,4 @@
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
__version__ = "1.22.1"
__version__ = "1.22.2-dev"