diff options
author | cedricbonhomme <devnull@localhost> | 2011-02-26 16:07:41 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2011-02-26 16:07:41 +0100 |
commit | fa24590c0980aafabc3e007232f0322a1922a1e3 (patch) | |
tree | 2220c2a63692b42d9b43509a997fd83190bde085 /pyAggr3g470r.py | |
parent | Added favicon.png (diff) | |
download | newspipe-fa24590c0980aafabc3e007232f0322a1922a1e3.tar.gz newspipe-fa24590c0980aafabc3e007232f0322a1922a1e3.tar.bz2 newspipe-fa24590c0980aafabc3e007232f0322a1922a1e3.zip |
Removed useless print.
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-x | pyAggr3g470r.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 9015a2b0..e796e9cf 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -1234,7 +1234,6 @@ if __name__ == '__main__': LOCKER = threading.Lock() root = Root() root.favicon_ico = cherrypy.tools.staticfile.handler(filename=os.path.join(utils.path + "/css/img/favicon.png")) - print os.path.join(utils.path + "/css/img/favicon.png") if not os.path.isfile(utils.sqlite_base): # create the SQLite base if not exists print "Creating data base..." @@ -1252,4 +1251,4 @@ if __name__ == '__main__': thread_watch_base = threading.Thread(None, root.watch_base_classic, None, ()) thread_watch_base.setDaemon(True) thread_watch_base.start() - cherrypy.quickstart(root, config=path) + cherrypy.quickstart(root, config=path)
\ No newline at end of file |