Exemplo n.º 1
0
 def notfound(self):
     """Returns HTTPError with '404 not found' message"""
     parent = self.get_parent_app()
     if parent:
         return parent.notfound()
     else:
         return web._NotFound()
Exemplo n.º 2
0
 def notfound(self):
     """Returns HTTPError with '404 not found' message"""
     parent = self.get_parent_app()
     if parent:
         return parent.notfound()
     else:
         return web._NotFound()
Exemplo n.º 3
0
 def notfound(self):
     parent = self.get_parent_app()
     if parent:
         return parent.notfound()
     else:
         return web._NotFound()