Files
mangaDownloader/manga-py-stable_1.x/manga_py/providers/reader_championscans_com.py
2019-12-14 22:33:14 -05:00

14 lines
299 B
Python

from .read_powermanga_org import ReadPowerMangaOrg
class ReaderChampionScansCom(ReadPowerMangaOrg):
def get_chapter_index(self):
idx = super().get_chapter_index().split('-')
if idx[0] == '0':
del idx[0]
return '-'.join(idx)
main = ReaderChampionScansCom