aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-19 09:58:24 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-19 09:58:24 +0100
commit0905059a35cc826b719a3ec07b6b4f00302b2a41 (patch)
tree4308b59a239ae950720440386267920a6aeb463b /source
parentAdded authentication to the MongoDB database for testbinarytree script. (diff)
downloadnewspipe-0905059a35cc826b719a3ec07b6b4f00302b2a41.tar.gz
newspipe-0905059a35cc826b719a3ec07b6b4f00302b2a41.tar.bz2
newspipe-0905059a35cc826b719a3ec07b6b4f00302b2a41.zip
Restored favicon.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 5e9dba22..cc5c7d82 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -672,6 +672,6 @@ class pyAggr3g470r(object):
if __name__ == '__main__':
# Point of entry in execution mode
root = pyAggr3g470r()
- root.favicon_ico = cherrypy.tools.staticfile.handler(filename=os.path.join(conf.path + "static/img/favicon.png"))
+ root.favicon_ico = cherrypy.tools.staticfile.handler(filename=os.path.join(conf.path + "/static/img/favicon.png"))
cherrypy.config.update({'error_page.404': error_404})
- cherrypy.quickstart(root, "/" ,config=conf.path + "/cfg/cherrypy.cfg") \ No newline at end of file
+ cherrypy.quickstart(root, "/" ,config=conf.path + "/cfg/cherrypy.cfg")
bgstack15