Hello I'm really stuck, I try to enable debug because my page keeps saying "Unhandled Exception" instead of showing the debug page when there's an error in my code.
I'm using flask and in my flask_app.py (main application) I have the following lines which (I believe) should enable DEBUG mode for my application:
DEBUG = True
app = Flask(__name__)
app.config.from_object(__name__)
When I try this with python and flask locally on my computer it works fine. Because I'm a beginner with both flask and pythonanyware.com I use this tutorial http://flask.pocoo.org/docs/tutorial/introduction/ where I also find that the above code should do.
Can someone please give me a hint? I really try hard to understand what I'm doing incorrectly here...
Thanks very much in advance.