code tweaks

making setting passing optional for core.load() as part of transition
mode between beta and stable.

fixed redraw for feedback menu.
master
endorphant 2016-05-27 03:31:46 -04:00
parent 3a08bcb116
commit 53466c8a5f
2 changed files with 2 additions and 2 deletions

View File

@ -356,6 +356,7 @@ def main_menu():
redraw(EJECT) redraw(EJECT)
redraw() redraw()
elif choice == '5': elif choice == '5':
redraw("you're about to send mail to ~endorphant about ttbp\n")
feedback_menu() feedback_menu()
elif choice == '6': elif choice == '6':
redraw() redraw()
@ -378,7 +379,6 @@ def feedback_menu():
* calls feedback writing function * calls feedback writing function
''' '''
print("you're about to send mail to ~endorphant about ttbp\n\n")
util.print_menu(SUBJECTS, RAINBOW) util.print_menu(SUBJECTS, RAINBOW)
choice = raw_input("\npick a category for your feedback: ") choice = raw_input("\npick a category for your feedback: ")

View File

@ -54,7 +54,7 @@ HEADER = ""
FOOTER = "" FOOTER = ""
FILES = [] FILES = []
def load(ttbprc): def load(ttbprc={}):
''' '''
get all them globals set up!! get all them globals set up!!
''' '''