balancing versions
parent
08238c7e9c
commit
2003af31f8
|
@ -219,6 +219,9 @@ press <enter> to begin, or <ctrl-c> to get out of here.
|
||||||
subprocess.call(["mkdir", CONFIG])
|
subprocess.call(["mkdir", CONFIG])
|
||||||
subprocess.call(["mkdir", DATA])
|
subprocess.call(["mkdir", DATA])
|
||||||
|
|
||||||
|
versionFile = os.path.join(PATH, "version")
|
||||||
|
open(versionFile, "w").write(__version__)
|
||||||
|
|
||||||
## create header file
|
## create header file
|
||||||
header = gen_header()
|
header = gen_header()
|
||||||
headerfile = open(os.path.join(CONFIG, "header.txt"), 'w')
|
headerfile = open(os.path.join(CONFIG, "header.txt"), 'w')
|
||||||
|
@ -234,7 +237,7 @@ press <enter> to begin, or <ctrl-c> to get out of here.
|
||||||
setup()
|
setup()
|
||||||
core.load(SETTINGS)
|
core.load(SETTINGS)
|
||||||
|
|
||||||
raw_input("\nyou're all good to go, "+chatter.say("friend")+"! hit <enter> to continue.\n\n")
|
#raw_input("\nyou're all good to go, "+chatter.say("friend")+"! hit <enter> to continue.\n\n")
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
def gen_header():
|
def gen_header():
|
||||||
|
@ -791,7 +794,7 @@ def select_editor():
|
||||||
'''
|
'''
|
||||||
|
|
||||||
util.print_menu(EDITORS, RAINBOW)
|
util.print_menu(EDITORS, RAINBOW)
|
||||||
|
|
||||||
choice = util.list_select(EDITORS, "pick your favorite text editor: ")
|
choice = util.list_select(EDITORS, "pick your favorite text editor: ")
|
||||||
#choice = raw_input("\npick your favorite text editor: ")
|
#choice = raw_input("\npick your favorite text editor: ")
|
||||||
#while choice not in ['0', '1', '2', '3', '4', '5']:
|
#while choice not in ['0', '1', '2', '3', '4', '5']:
|
||||||
|
|
Loading…
Reference in New Issue