I tried to uninstall a django app automatically installed by this site by manually deleting the directory which was created (pretty sure that's not the best idea but it's what I did. Sorry). Then tried to set up a flask app like:
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
in my wsgi file (I also deleted the django stuff) and hit the reload web app button but I get an internal server error The error log says:
[Sun May 06 12:28:30 2012] Traceback (most recent call last):
[Sun May 06 12:28:30 2012] File "/bin/serve_wsgi.py", line 53, in main
[Sun May 06 12:28:30 2012] application = get_application_with_error_logger(error_log)
[Sun May 06 12:28:30 2012] File "/bin/serve_wsgi.py", line 47, in get_application_with_error_logger
[Sun May 06 12:28:30 2012] return ErrorLoggingWrapper(wsgi_module.application, error_log)
[Sun May 06 12:28:30 2012] AttributeError: 'module' object has no attribute 'application'
Is it possible to just start again with files and settings as when I signed up? Though I may learn something if I can fix this.
What should I do?