forked from endorphant/ttbp
stubbing out feels burying
parent
5946989406
commit
95291397f4
|
@ -85,7 +85,7 @@ ___________________________________________________________
|
|||
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
|
||||
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
||||
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
||||
| ver 0.12.2b (bury your feels) |
|
||||
| ver 0.12.3b (delete your account) |
|
||||
|__________________________________________________________|
|
||||
~ u n s t a b l e e x p e r i m e n t a l b r a n c h ~
|
||||
'''.lstrip()
|
||||
|
|
15
ttbp/ttbp.py
15
ttbp/ttbp.py
|
@ -650,7 +650,11 @@ def review_menu(intro=""):
|
|||
redraw("loading feels backup")
|
||||
load_backup()
|
||||
elif choice == 4:
|
||||
top = DUST
|
||||
if hasfeels:
|
||||
redraw("burying feels")
|
||||
bury_feels()
|
||||
else:
|
||||
top = nofeels
|
||||
elif choice == 5:
|
||||
if hasfeels:
|
||||
redraw("deleting feels")
|
||||
|
@ -1063,6 +1067,15 @@ you can check out the leftover feels yourself at:
|
|||
input("\n\npress <enter> to go back to managing your feels.\n\n")
|
||||
return
|
||||
|
||||
def bury_feels():
|
||||
"""queries for a feel to bury, then calls the feels burying handler.
|
||||
"""
|
||||
|
||||
print(DUST)
|
||||
|
||||
input("\n\npress <enter> to go back to managing your feels.\n\n")
|
||||
return
|
||||
|
||||
def show_credits():
|
||||
'''
|
||||
prints author acknowledgements and commentary
|
||||
|
|
Loading…
Reference in New Issue