aboutsummaryrefslogtreecommitdiff
blob: 62eb30ca599ce038cbf29f336b459453ce06ff65 (plain)
1
2
3
4
5
6
7
8
9
10
import web

class About(object):

    def GET(self):
        """
        Redirect to static about page
        """
        raise web.seeother('/static/about.html')