From d6e7d481efab0856cc69883a52bbd2b0eedb65ff Mon Sep 17 00:00:00 2001 From: Sophiane BOUZIDI Date: Sun, 15 Oct 2023 17:32:08 +0200 Subject: [PATCH] Correction to the choice between automatically finding the League of Legends path or not --- WhereAreU.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WhereAreU.py b/WhereAreU.py index 7b6acec..d1dbbce 100644 --- a/WhereAreU.py +++ b/WhereAreU.py @@ -26,7 +26,7 @@ def get_all_disks(): user_preference = input("Do you want to search for the 'League of Legends' folder on all disks automatically? (This technique may take some time - 2~3min) (Y/N) : ") - if user_preference == "O" or user_preference == "o" or user_preference == "": + if user_preference == "Y" or user_preference == "y" or user_preference == "": available_disks = get_all_disks() for disque in available_disks: print("Search for the 'League of Legends' folder from 'Riot Games' on disk : " + disque)