From eacebf41e4ad30ea2b974c76fa5d2d87017aea0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 23 Mar 2019 22:11:08 +0100 Subject: [PATCH] fix typo in README --- README.rst | 2 +- gallery_dl/extractor/komikcast.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 965b473c36b..15627382a21 100644 --- a/README.rst +++ b/README.rst @@ -200,7 +200,7 @@ To link your account to *gallery-dl*, start by invoking it with $ gallery-dl oauth:flickr You will be sent to the site's authorization page and asked to grant read -access to *gallery-dl*. Authorize it and you will he shown one or more +access to *gallery-dl*. Authorize it and you will be shown one or more "tokens", which should be added to your configuration file. diff --git a/gallery_dl/extractor/komikcast.py b/gallery_dl/extractor/komikcast.py index dd6a18085e9..a79708bcb2c 100644 --- a/gallery_dl/extractor/komikcast.py +++ b/gallery_dl/extractor/komikcast.py @@ -107,7 +107,7 @@ def metadata(page): mtype , pos = text.extract(page, ">Type:" , "", pos) return { - "manga": text.unescape(manga.rpartition(" - ")[0]), + "manga": text.unescape(manga[:-12]), "author": text.remove_html(author), "genres": text.split_html(genres)[::2], "type": text.remove_html(mtype),