diff --git a/gooey/gui/widgets/components2.py b/gooey/gui/widgets/components2.py index fccdad8..281e7ae 100644 --- a/gooey/gui/widgets/components2.py +++ b/gooey/gui/widgets/components2.py @@ -68,7 +68,7 @@ class BaseGuiComponent(object): return text def formatExtendedHelpMsg(self, data): - base_text = data.get('help_msg', '') + base_text = data.get('help', '') nargs = data['nargs'] if isinstance(nargs, int): return '{base}\n(Note: exactly {nargs} arguments are required)'.format(base=base_text, nargs=nargs)