Just trying to set a favicon in an application called init on a webfaction. However, I just get Internal Server Error everytime I use routes.py.
Here's the code: default_application = 'init' # ordinarily set in base routes.py default_controller = 'default' # ordinarily set in app-specific routes.py default_function = 'index' # ordinarily set in app-specific routes.py #routes_app = ((r'/(?P<app>welcome|admin|app)\b.*', r'\g<app>'), # (r'(.*)', r'myapp'), # (r'/?(.*)', r'myapp')) routes_in = ( (r'.*:/favicon.ico', r'/init/static/images/ favicon.ico') ) routes_out = () any ideas on what can be the problem? Thank you Best regards

