Skip to content

Commit

Permalink
fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Mar 24, 2019
1 parent e47a24a commit eacebf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
2 changes: 1 addition & 1 deletion gallery_dl/extractor/komikcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def metadata(page):
mtype , pos = text.extract(page, ">Type:" , "</span>", 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),
Expand Down

0 comments on commit eacebf4

Please sign in to comment.