From b3b17feb716eaa8c1ba26bf79706612b6a98d00e Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg Date: Tue, 28 Dec 2010 16:00:16 +0100 Subject: [PATCH] fix guistove warning string --- pyfpdb/GuiStove.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/GuiStove.py b/pyfpdb/GuiStove.py index b600c81e..d6de610e 100644 --- a/pyfpdb/GuiStove.py +++ b/pyfpdb/GuiStove.py @@ -55,9 +55,9 @@ class GuiStove(): if DEBUG == False: warning_string = _("Stove is a GUI mockup of a EV calculation page, and completely non functional.\n") - warning_string = _("Unless you are interested in developing this feature, please ignore this page.\n") - warning_string = _("If you are interested in developing the code further see GuiStove.py and Stove.py\n") - warning_string = _("Thank you\n") + warning_string += _("Unless you are interested in developing this feature, please ignore this page.\n") + warning_string += _("If you are interested in developing the code further see GuiStove.py and Stove.py\n") + warning_string += _("Thank you") self.warning_box(warning_string)