From 53466c8a5f6cee3438e8b2876100e5f63ca6b3b3 Mon Sep 17 00:00:00 2001 From: endorphant Date: Fri, 27 May 2016 03:31:46 -0400 Subject: [PATCH] code tweaks making setting passing optional for core.load() as part of transition mode between beta and stable. fixed redraw for feedback menu. --- bin/_ttbp.py | 2 +- bin/core.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/_ttbp.py b/bin/_ttbp.py index fa54314..a16d421 100644 --- a/bin/_ttbp.py +++ b/bin/_ttbp.py @@ -356,6 +356,7 @@ def main_menu(): redraw(EJECT) redraw() elif choice == '5': + redraw("you're about to send mail to ~endorphant about ttbp\n") feedback_menu() elif choice == '6': redraw() @@ -378,7 +379,6 @@ def feedback_menu(): * calls feedback writing function ''' - print("you're about to send mail to ~endorphant about ttbp\n\n") util.print_menu(SUBJECTS, RAINBOW) choice = raw_input("\npick a category for your feedback: ") diff --git a/bin/core.py b/bin/core.py index ba301b2..d84dc08 100644 --- a/bin/core.py +++ b/bin/core.py @@ -54,7 +54,7 @@ HEADER = "" FOOTER = "" FILES = [] -def load(ttbprc): +def load(ttbprc={}): ''' get all them globals set up!! '''