From 381705d8239dbbadd08a717c412bd50178b0464e Mon Sep 17 00:00:00 2001 From: Ian Gregory Date: Thu, 23 Apr 2020 13:42:29 -0400 Subject: [PATCH] Be clear that changing backup path moves the folder --- shallow_backup/prompts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shallow_backup/prompts.py b/shallow_backup/prompts.py index 2e75d3e8..5a06684f 100644 --- a/shallow_backup/prompts.py +++ b/shallow_backup/prompts.py @@ -16,7 +16,7 @@ def path_update_prompt(config): """ current_path = config["backup_path"] print_path_blue("Current shallow-backup path:", current_path) - if prompt_yes_no("Would you like to update this?", Fore.GREEN, invert=True): + if prompt_yes_no("Would you like to move this somewhere else?", Fore.GREEN, invert=True): while True: print_green_bold("Enter relative or absolute path:") abs_path = expand_to_abs_path(input())