diff --git a/py_adl/adl.py b/py_adl/adl.py index fdcf9de..bd5305e 100644 --- a/py_adl/adl.py +++ b/py_adl/adl.py @@ -14,11 +14,11 @@ def main(): player = "mpv" # specific player download = False # specify whether to download or not msg = "watching" # msg for the watch prompt - good_title = open(dn + "/good_title.txt").readlines() # the list of good titles - problematic_titles = open(dn + "/problem_title.txt").readlines() # list of problematic titles - fzf_file = open(dn + "/fzf.txt", "w+") - fzf_file_path = dn +"/fzf.txt" - print_fzf_path = "python " + dn + "/print_fzf.py" + good_title = open(dn + "\\good_title.txt").readlines() # the list of good titles + problematic_titles = open(dn + "\\problem_title.txt").readlines() # list of problematic titles + fzf_file = open(dn + "\\fzf.txt", "w+") + fzf_file_path = dn +"\\fzf.txt" + print_fzf_path = "python " + dn + "\\print_fzf.py" ap = argparse.ArgumentParser() diff --git a/setup.py b/setup.py index 8fae3e1..037161a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ try: except IOError: LONG_DESCRIPTION = __doc__ -VERSION = '0.1.4' +VERSION = '0.1.5' NAME = "py-adl" DESCRIPTION = 'Python wrapper for trackma and anime-downloader' REQUIREMENTS = ['trackma', 'pillow']