fix import

This commit is contained in:
sudacode 2025-03-07 04:34:51 -08:00
parent 7780c9e640
commit b19ed0efea
Signed by: sudacode
SSH Key Fingerprint: SHA256:lT5C2bB398DcX6daCF/gYFNSTK3y+Du3oTGUnYzfTEw
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[metadata]
name = jimaku-dl
version = 0.1.0
version = 0.1.1
author = InsaneDesperado
author_email = insane@lmaoxd.lol
description = Download japanese anime subtitles from Jimaku

View File

@ -3,9 +3,10 @@
from argparse import ArgumentParser
from os import environ
from sys import exit
from sys import exit as sysexit
from jimaku_downloader.downloader import JimakuDownloader
s
from jimaku_dl.downloader import JimakuDownloader
def main():
@ -63,4 +64,4 @@ def main():
if __name__ == "__main__":
exit(main())
sysexit(main())