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']: