Skip to content

Instantly share code, notes, and snippets.

/traceback.txt Secret

Created May 12, 2014 14:47
Show Gist options
  • Save anonymous/d01a81bc0193afe3b064 to your computer and use it in GitHub Desktop.
Save anonymous/d01a81bc0193afe3b064 to your computer and use it in GitHub Desktop.
Werkzeug Internal Server Error
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1701, in __call__
return self.wsgi_app(environ, start_response)
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1689, in wsgi_app
response = self.make_response(self.handle_exception(e))
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1687, in wsgi_app
response = self.full_dispatch_request()
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1360, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1358, in full_dispatch_request
rv = self.dispatch_request()
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1344, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/srv/lwp/lwp.py", line 697, in login
user = query_db('select name, username, su from users where username=? and password=?', [request_username, request_passwd], one=True)
File "/srv/lwp/lwp.py", line 776, in query_db
cur = g.db.execute(query, args)
OperationalError: no such table: users
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment