diff --git a/gallery_dl/extractor/tumblr.py b/gallery_dl/extractor/tumblr.py index a1f21997..0505fa94 100644 --- a/gallery_dl/extractor/tumblr.py +++ b/gallery_dl/extractor/tumblr.py @@ -310,7 +310,7 @@ class TumblrTagExtractor(TumblrExtractor): def __init__(self, match): TumblrExtractor.__init__(self, match) - self.tag = text.unquote(match.group(3)) + self.tag = text.unquote(match.group(3).replace("-", " ")) def posts(self): return self.api.posts(self.blog, {"tag": self.tag})