Author: chrisz
Date: Sat Jan 26 06:11:48 2008
New Revision: 4048
URL: http://trac.turbogears.org/changeset/4048
Log:
Controllers should always return dicts, not string.
Modified:
branches/1.1/turbogears/identity/tests/test_visit.py
Modified: branches/1.1/turbogears/identity/tests/test_visit.py
==============================================================================
--- branches/1.1/turbogears/identity/tests/test_visit.py (original)
+++ branches/1.1/turbogears/identity/tests/test_visit.py Sat Jan 26
06:11:48 2008
@@ -12,7 +12,7 @@
class VisitRoot(turbogears.controllers.RootController):
def index(self):
- return ""
+ return dict()
index = turbogears.expose()(index)