Hello, I have an app using Django 1.4 dev. Im using i18n_patterns and well, it works perfectly.
If im on a spanish session and I go to:
/foo/
It redirects me to:
/es/foo/
so far so good.
But when I disable DEBUG, it doesn't work.
If you go to:
/foo/ it just redirect you to 500.html.
Without DEBUG Im not able to debug, right?
So... How can I figure what's going on?
I uploaded an example:
http://dl.dropbox.com/u/10283624/dalpharedirect.zipIts just a hello world :)
Thanks.