Pressing '?' crashed the client as 'docs' was not found in show_help() in curses_helpers.py. Changing docs.HELP.split('\n') to HELP.split('\n') shows help appropriately.
This commit is contained in:
@@ -60,7 +60,7 @@ def show_help(stdscr):
|
||||
"""
|
||||
Overlay a message box with the help screen.
|
||||
"""
|
||||
show_notification(stdscr, docs.HELP.split("\n"))
|
||||
show_notification(stdscr, HELP.split("\n"))
|
||||
|
||||
class LoadScreen(object):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user