Skip to content

Commit

Permalink
Merge pull request #1649 from umikali222/patch-1
Browse files Browse the repository at this point in the history
fixed update question issue
  • Loading branch information
revoxhere committed May 7, 2023
2 parents da737d1 + 70d4f42 commit 8d1680c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PC_Miner.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def check_updates():

if float(Settings.VER) < float(data["tag_name"]): # If is outdated
update = input(Style.BRIGHT + get_string("new_version"))
if update == "Y" or update == "y":
if update.lower() == "y" or update == "":
pretty_print(get_string("updating"), "warning", "sys0")

DATA_DIR = "Duino-Coin PC Miner " + str(data["tag_name"]) # Create new version config folder
Expand Down

0 comments on commit 8d1680c

Please sign in to comment.