From 9546c67e0c245330313aa2622c97608d50b3f711 Mon Sep 17 00:00:00 2001 From: endorphant Date: Mon, 19 Feb 2018 19:15:21 -0500 Subject: [PATCH] trivial test edit --- ttbp/ttbp.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ttbp/ttbp.py b/ttbp/ttbp.py index 93564a8..253e52b 100644 --- a/ttbp/ttbp.py +++ b/ttbp/ttbp.py @@ -220,8 +220,11 @@ def check_init(): print("\n\n") if os.path.exists(os.path.join(os.path.expanduser("~"),".ttbp")): - print("{greeting}, {user}".format(greeting=chatter.say("greet"), - user=config.USER)) + if config.USER == "endorphant": + print("hey boss! :D\n") + else: + print("{greeting}, {user}".format(greeting=chatter.say("greet"), + user=config.USER)) ## ttbp env validation if not user_up_to_date(): @@ -229,6 +232,7 @@ def check_init(): elif not valid_setup(): setup_repair() else: + raw_input("press to explore your feels.\n\n") core.load(SETTINGS)