From 271b12c387cf6b81f9aa095e41ce05f57e980a88 Mon Sep 17 00:00:00 2001 From: Charles Milette Date: Sun, 12 Aug 2018 16:15:49 -0400 Subject: [PATCH] Fix bad english --- pokemonterminal/scripter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pokemonterminal/scripter.py b/pokemonterminal/scripter.py index 3c7de73..27244bc 100644 --- a/pokemonterminal/scripter.py +++ b/pokemonterminal/scripter.py @@ -16,7 +16,7 @@ def __init_terminal_provider(): if len(providers) > 1: # All this if is really not supposed to happen at all whatsoever # really what kind of person has 2 simultaneous T.E??? - print("Multiple providers found select the appropriate one:") + print("Multiple providers found, please select the appropriate one.") for i, x in enumerate(providers): print(f'{i}. {x.__str__()}') print("If some of these make no sense or are irrelevant please file " + @@ -46,7 +46,7 @@ def __init_wallpaper_provider(): if len(providers) > 1: # All this if is really not supposed to happen at all whatsoever # really what kind of person has 2 simultaneous D.E??? - print("Multiple providers found select the appropriate one:") + print("Multiple providers found, please select the appropriate one.") for i, x in enumerate(providers): print(f'{i}. {x.__str__()}') print("If some of these make no sense or are irrelevant please file " +