diff --git a/gallery_dl/extractor/komikcast.py b/gallery_dl/extractor/komikcast.py
index 6e5aec95..21ed3c79 100644
--- a/gallery_dl/extractor/komikcast.py
+++ b/gallery_dl/extractor/komikcast.py
@@ -60,7 +60,7 @@ class KomikcastChapterExtractor(KomikcastBase, ChapterExtractor):
)
def metadata(self, page):
- info = text.extract(page, "
", " – Komikcast<")[0]
+ info = text.extract(page, "", " – Komikcast<")[0]
return self.parse_chapter_string(info)
@staticmethod
@@ -100,7 +100,7 @@ class KomikcastMangaExtractor(KomikcastBase, MangaExtractor):
@staticmethod
def metadata(page):
"""Return a dict with general metadata"""
- manga , pos = text.extract(page, "" , " – Komikcast<")
+ manga , pos = text.extract(page, "" , " – Komikcast<")
genres, pos = text.extract(
page, 'class="komik_info-content-genre">', "", pos)
author, pos = text.extract(page, ">Author:", "", pos)