Skip to content

Commit

Permalink
Fix Some Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yaronzz committed Jul 12, 2019
1 parent dc4d927 commit 7a45785
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified TIDALDL-PY/exe/tidal-dl.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions TIDALDL-PY/tidal_dl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from tidal_dl.download import Download
from tidal_dl.printhelper import printMenu,printChoice2,printErr

TIDAL_DL_VERSION="2019.7.12.0"
TIDAL_DL_VERSION="2019.7.12.1"

def logIn(username = "", password = ""):
if username == "" or password == "":
Expand Down Expand Up @@ -51,7 +51,7 @@ def setting():
break
while True:
index = myinputInt("Quality(0-LOW,1-HIGH,2-LOSSLESS,3-HI_RES):".ljust(12), 999)
if index > 2 or index < 0:
if index > 3 or index < 0:
printErr(0, "Quality Err!")
continue
if index == 0:
Expand Down

0 comments on commit 7a45785

Please sign in to comment.