On Feb 22, 2011, at 11:47 PM, Johann Spies wrote: > Without the routes.py file I can work with the image in static/images but not > when routes.py is active.
Is it possible that you were using URL calls like this:
URL(... c='static/images', f='filename') ?
If so, try changing them to this:
URL(... c='static', f='images/filename')

