aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-10-20 15:27:01 +0200
committercedricbonhomme <devnull@localhost>2012-10-20 15:27:01 +0200
commite3362add0bc1aae9268ec639e785f055af3e729f (patch)
tree1eeedc1495728a2fa16a3c688c7f645d28958c61
parentFixed in typo in password file. (diff)
downloadnewspipe-e3362add0bc1aae9268ec639e785f055af3e729f.tar.gz
newspipe-e3362add0bc1aae9268ec639e785f055af3e729f.tar.bz2
newspipe-e3362add0bc1aae9268ec639e785f055af3e729f.zip
Renamed root class.
-rwxr-xr-xsource/pyAggr3g470r.py4
1 files 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})
bgstack15