Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. 127.0.0.1 - - [30/Aug/2015 14:55:30] "POST /api/course/create HTTP/1.1" 500 -
  2. Traceback (most recent call last):
  3. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1836, in __call__
  4. return self.wsgi_app(environ, start_response)
  5. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1820, in wsgi_app
  6. response = self.make_response(self.handle_exception(e))
  7. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask_restful/__init__.py", line 270, in error_router
  8. return original_handler(e)
  9. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1403, in handle_exception
  10. reraise(exc_type, exc_value, tb)
  11. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/_compat.py", line 33, in reraise
  12. raise value
  13. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1817, in wsgi_app
  14. response = self.full_dispatch_request()
  15. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1477, in full_dispatch_request
  16. rv = self.handle_user_exception(e)
  17. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask_restful/__init__.py", line 270, in error_router
  18. return original_handler(e)
  19. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1381, in handle_user_exception
  20. reraise(exc_type, exc_value, tb)
  21. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/_compat.py", line 33, in reraise
  22. raise value
  23. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1475, in full_dispatch_request
  24. rv = self.dispatch_request()
  25. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/app.py", line 1461, in dispatch_request
  26. return self.view_functions[rule.endpoint](**req.view_args)
  27. File "/home/harshit/workspace/splash-website/splash/auth/decorators.py", line 17, in decorator
  28. return f(*args, **kwargs)
  29. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/views.py", line 84, in view
  30. return self.dispatch_request(*args, **kwargs)
  31. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask/views.py", line 149, in dispatch_request
  32. return meth(*args, **kwargs)
  33. File "/home/harshit/workspace/splash-website/splash/views/form/splash_form_view.py", line 31, in post
  34. if form.validate_on_submit():
  35. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/flask_wtf/form.py", line 166, in validate_on_submit
  36. return self.is_submitted() and self.validate()
  37. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/wtforms/form.py", line 310, in validate
  38. return super(Form, self).validate(extra)
  39. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/wtforms/form.py", line 152, in validate
  40. if not field.validate(self, extra):
  41. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/wtforms/fields/core.py", line 200, in validate
  42. stop_validation = self._run_validation_chain(form, chain)
  43. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/wtforms/fields/core.py", line 220, in _run_validation_chain
  44. validator(form, self)
  45. File "/home/harshit/workspace/splash-website/venv/lib/python3.4/site-packages/wtforms/validators.py", line 132, in __call__
  46. if data is None or (self.min is not None and data < self.min) or \
  47. TypeError: unorderable types: str() < int()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement