From de11933ab86b69b650e741b8ebf35283133bff7d Mon Sep 17 00:00:00 2001 From: Kanishk Vishwakarma <52484751+Kanishk598@users.noreply.github.com> Date: Sat, 5 Feb 2022 19:15:49 +0530 Subject: [PATCH] lol small typo --- konsave/funcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/konsave/funcs.py b/konsave/funcs.py index 99252b1..9ac9f90 100644 --- a/konsave/funcs.py +++ b/konsave/funcs.py @@ -354,7 +354,7 @@ def import_profile(path): @exception_handler def wipe(): """Wipes all profiles.""" - confirm = input('This will wipe all your profiles. Enter "WIPE" Tto continue: ') + confirm = input('This will wipe all your profiles. Enter "WIPE" To continue: ') if confirm == "WIPE": shutil.rmtree(PROFILES_DIR) log("Removed all profiles!")