aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-02-26 16:07:41 +0100
committercedricbonhomme <devnull@localhost>2011-02-26 16:07:41 +0100
commitfa24590c0980aafabc3e007232f0322a1922a1e3 (patch)
tree2220c2a63692b42d9b43509a997fd83190bde085 /pyAggr3g470r.py
parentAdded favicon.png (diff)
downloadnewspipe-fa24590c0980aafabc3e007232f0322a1922a1e3.tar.gz
newspipe-fa24590c0980aafabc3e007232f0322a1922a1e3.tar.bz2
newspipe-fa24590c0980aafabc3e007232f0322a1922a1e3.zip
Removed useless print.
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py3
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
bgstack15