Advertisement
Guest User

AttributeError: '_QueryProxy' object has no attribute 'pagin

a guest
Aug 28th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\flask\lib\site-packages\flask\app.py", line 1701, in __call__
  2. return self.wsgi_app(environ, start_response)
  3. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\flask\lib\site-packages\flask\app.py", line 1689, in wsgi_app
  4. response = self.make_response(self.handle_exception(e))
  5. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\flask\lib\site-packages\flask\app.py", line 1687, in wsgi_app
  6. response = self.full_dispatch_request()
  7. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\flask\lib\site-packages\flask\app.py", line 1360, in full_dispatch_request
  8. rv = self.handle_user_exception(e)
  9. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\flask\lib\site-packages\flask\app.py", line 1358, in full_dispatch_request
  10. rv = self.dispatch_request()
  11. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\flask\lib\site-packages\flask\app.py", line 1344, in dispatch_request
  12. return self.view_functions[rule.endpoint](**req.view_args)
  13. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\flask\lib\site-packages\flask_login.py", line 663, in decorated_view
  14. return func(*args, **kwargs)
  15. File "C:\Users\Dwayne Boothe\Documents\Projects\Tutorials\Python\microblog\app\views.py", line 22, in index
  16. posts = g.user.followed_posts().paginate(page, POSTS_PER_PAGE, False)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement