From 8ac3f204fa65c2ac9879d2537f41bddc732921be Mon Sep 17 00:00:00 2001 From: mdipierro Date: Wed, 11 Mar 2015 00:53:19 -0500 Subject: [PATCH] inverted messages --- applications/welcome3/controllers/default.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/welcome3/controllers/default.py b/applications/welcome3/controllers/default.py index b2f2a5dd..912675cd 100644 --- a/applications/welcome3/controllers/default.py +++ b/applications/welcome3/controllers/default.py @@ -17,8 +17,8 @@ def index(): if you need a simple wiki simply replace the two lines below with: return auth.wiki() """ - response.flash = T("Welcome to web2py!") - return dict(message=T('Hello World')) + response.flash = T("Hello World") + return dict(message=T('Welcome to web2py!')) def user():