Skip to content

Commit

Permalink
[tbscans] remove excess whitespace in 'manga'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed May 31, 2024
1 parent 00440b8 commit deacbcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/tcbscans.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def metadata(self, page):
page, 'font-bold mt-8">', "</h1>").rpartition(" - Chapter ")
chapter, sep, minor = chapter.partition(".")
return {
"manga": text.unescape(manga),
"manga": text.unescape(manga).strip(),
"chapter": text.parse_int(chapter),
"chapter_minor": sep + minor,
"lang": "en", "language": "English",
Expand Down

0 comments on commit deacbcb

Please sign in to comment.