From e3362add0bc1aae9268ec639e785f055af3e729f Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Sat, 20 Oct 2012 15:27:01 +0200 Subject: Renamed root class. --- source/pyAggr3g470r.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index 639e5640..b93d873b 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -114,7 +114,7 @@ class RestrictedArea: def index(self): return """This is the admin only area.""" -class Root: +class pyAggr3g470r(object): """ Root class. All pages of pyAggr3g470r are described in this class. @@ -1251,7 +1251,7 @@ class Root: if __name__ == '__main__': # Point of entry in execution mode - root = Root() + root = pyAggr3g470r() root.favicon_ico = cherrypy.tools.staticfile.handler(filename=os.path.join(conf.path + "/img/favicon.png")) cherrypy.config.update({ 'server.socket_port': 12556, 'server.socket_host': "0.0.0.0"}) cherrypy.config.update({'error_page.404': error_page_404}) -- cgit