From 2003af31f8a84cec174342f97f54a86e5b69459b Mon Sep 17 00:00:00 2001 From: endorphant Date: Fri, 9 Sep 2016 12:21:49 -0400 Subject: [PATCH] balancing versions --- bin/_ttbp.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/_ttbp.py b/bin/_ttbp.py index ecd0213..58a767d 100644 --- a/bin/_ttbp.py +++ b/bin/_ttbp.py @@ -219,6 +219,9 @@ press to begin, or to get out of here. subprocess.call(["mkdir", CONFIG]) subprocess.call(["mkdir", DATA]) + versionFile = os.path.join(PATH, "version") + open(versionFile, "w").write(__version__) + ## create header file header = gen_header() headerfile = open(os.path.join(CONFIG, "header.txt"), 'w') @@ -234,7 +237,7 @@ press to begin, or to get out of here. setup() core.load(SETTINGS) - raw_input("\nyou're all good to go, "+chatter.say("friend")+"! hit to continue.\n\n") + #raw_input("\nyou're all good to go, "+chatter.say("friend")+"! hit to continue.\n\n") return "" def gen_header(): @@ -791,7 +794,7 @@ def select_editor(): ''' util.print_menu(EDITORS, RAINBOW) - + choice = util.list_select(EDITORS, "pick your favorite text editor: ") #choice = raw_input("\npick your favorite text editor: ") #while choice not in ['0', '1', '2', '3', '4', '5']: