Fix windows path problems
This commit is contained in:
parent
9722f7e917
commit
f99d1bc4b4
@ -14,11 +14,11 @@ def main():
|
|||||||
player = "mpv" # specific player
|
player = "mpv" # specific player
|
||||||
download = False # specify whether to download or not
|
download = False # specify whether to download or not
|
||||||
msg = "watching" # msg for the watch prompt
|
msg = "watching" # msg for the watch prompt
|
||||||
good_title = open(dn + "/good_title.txt").readlines() # the list of good titles
|
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
|
problematic_titles = open(dn + "\\problem_title.txt").readlines() # list of problematic titles
|
||||||
fzf_file = open(dn + "/fzf.txt", "w+")
|
fzf_file = open(dn + "\\fzf.txt", "w+")
|
||||||
fzf_file_path = dn +"/fzf.txt"
|
fzf_file_path = dn +"\\fzf.txt"
|
||||||
print_fzf_path = "python " + dn + "/print_fzf.py"
|
print_fzf_path = "python " + dn + "\\print_fzf.py"
|
||||||
|
|
||||||
ap = argparse.ArgumentParser()
|
ap = argparse.ArgumentParser()
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ try:
|
|||||||
except IOError:
|
except IOError:
|
||||||
LONG_DESCRIPTION = __doc__
|
LONG_DESCRIPTION = __doc__
|
||||||
|
|
||||||
VERSION = '0.1.4'
|
VERSION = '0.1.5'
|
||||||
NAME = "py-adl"
|
NAME = "py-adl"
|
||||||
DESCRIPTION = 'Python wrapper for trackma and anime-downloader'
|
DESCRIPTION = 'Python wrapper for trackma and anime-downloader'
|
||||||
REQUIREMENTS = ['trackma', 'pillow']
|
REQUIREMENTS = ['trackma', 'pillow']
|
||||||
|
Loading…
Reference in New Issue
Block a user