diff --git a/gallery_dl/extractor/mangaread.py b/gallery_dl/extractor/mangaread.py index 4b017dca00..6970b4f808 100644 --- a/gallery_dl/extractor/mangaread.py +++ b/gallery_dl/extractor/mangaread.py @@ -92,9 +92,9 @@ def metadata(self, page): "genres" : list(text.extract_iter( extr('class="genres-content">', ""), '"tag">', "")), "type" : text.remove_html( - extr("Type \n", "")), + extr(" Type ", "\n")), "release" : text.parse_int(text.remove_html( - extr("Release \n", ""))), + extr(" Release ", "\n"))), "status" : text.remove_html( - extr("Status \n", "")), + extr(" Status ", "\n")), }