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:
Thomas Kajder
2015-03-22 21:23:34 -06:00
parent 5a2d814abb
commit 571e1e82c5

View File

@@ -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):
"""