Guest User

Untitled

a guest
Jul 16th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. if not self.request.get('app_id'):
  2. self.response.set_status(404)
  3. self.response.out.write('<html><body><h1>404 Not Found</h1></body></html>')
  4. return
  5.  
  6. application = db.get(db.Key.from_path('Application', self.request.get('app_id')))
  7.  
  8. if application == None:
  9. self.response.set_status(404)
  10. self.response.out.write('<html><body><h1>404 Not Found</h1></body></html>')
  11. return
Add Comment
Please, Sign In to add comment