Skip to content

Commit

Permalink
[ngomik] fix extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Sep 9, 2018
1 parent a666ddd commit 542a25c
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/ngomik.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_metadata(self, page):
@staticmethod
def get_images(page):
readerarea = text.extract(
page, '<div class="page-break">', '<div class="select-view">')[0]
page, '<div class="page-break', '<div class="select-view')[0]
return [
(url, None)
for url in text.extract_iter(
Expand Down
2 changes: 1 addition & 1 deletion gallery_dl/extractor/senmanga.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class SenmangaChapterExtractor(Extractor):
}),
("http://raw.senmanga.com/Love-Lab/2016-03/1", {
"url": "8347b9f00c14b864dd3c19a1f5ae52adb2ef00de",
"keyword": "8a8ab2529ba2edfc83a6b3a8bede1d6c580db7b4",
"keyword": "4e72e4ade57671ad0af9c8d81feeff4259d5bbec",
}),
]
root = "https://raw.senmanga.com"
Expand Down

0 comments on commit 542a25c

Please sign in to comment.