OK, problem was with routes.py. I needed to add:

routers = dict(

    BASE = dict(
...
        controllers = 'DEFAULT',
...
)

Another little gotcha is that if you build URLs in a .load file, make sure 
to include extension='' so it doesn't inherit the .load extension.

Ex: URL(c='components', f='test_component', extension='')

Reply via email to