Skip to content

Commit

Permalink
[weibo] fix URLs generated by 'user' extractor (#2601)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jun 5, 2022
1 parent c2d1171 commit 61cbf83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/weibo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion gallery_dl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 61cbf83

Please sign in to comment.