From c32ae60629f0e2fd779847cb8cebb85615dd6054 Mon Sep 17 00:00:00 2001 From: "Robbie Harwood (frozencemetery)" Date: Mon, 4 Aug 2014 18:16:40 -0400 Subject: [PATCH] Cleanup the .help -> .help() transition. This fixes a problem wherin gertty would crash on startup while trying to display the welcome text. Change-Id: I6a9d66c06a144f9cd5b30727bbcce571d13550b2 Closes-bug: 183 --- gertty/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gertty/app.py b/gertty/app.py index 2c71631..98b4da6 100644 --- a/gertty/app.py +++ b/gertty/app.py @@ -212,7 +212,7 @@ class App(object): self.popup(dialog, min_width=76, min_height=len(lines)+4) def welcome(self): - text = WELCOME_TEXT + self.loop.widget.help + text = WELCOME_TEXT + self.loop.widget.help() dialog = mywid.MessageDialog('Welcome', text) lines = text.split('\n') urwid.connect_signal(dialog, 'close',