fix(novelpia): move format func

This commit is contained in:
Ryu juheon 2022-04-09 02:24:41 +09:00 committed by GitHub
parent 0675e8fe64
commit 5bbd6030b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class Downloader_novelpia(Downloader):
matched = regex.match(last_episode)
assert matched
total_episode_page = matched.group(1)
self.title = tr_("{} 개 찾음".format(total_episode_page))
self.title = tr_("{} 개 찾음").format(total_episode_page)
return int(total_episode_page), html
def __get_all_viewer_numbers(self):