Given:
# snippet
from gameolymp.lib.base import *
class NavigationController(BaseController):
def index(self):
return render_response('base')
class InnerClass(BaseController):
def index(self):
return Response('innner')
How would I route the inner class?
map.connect('spiele', '', controller='navigation.innerclass',
action='index' )
does not work. Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---