aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-02-10 00:04:26 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-02-10 00:04:26 +0100
commit3cdb54e59fbb1bfe09e6f460b1504fc3ca6e1c9e (patch)
tree285e5ff8c5c4fa3c019442c6a1716da0365a47b3 /source
parentUpdated screen shots link in the documentation. (diff)
downloadnewspipe-3cdb54e59fbb1bfe09e6f460b1504fc3ca6e1c9e.tar.gz
newspipe-3cdb54e59fbb1bfe09e6f460b1504fc3ca6e1c9e.tar.bz2
newspipe-3cdb54e59fbb1bfe09e6f460b1504fc3ca6e1c9e.zip
Updated comments.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index ac4c5998..abfdaa2a 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -35,7 +35,9 @@ __license__ = "GPLv3"
# - favorites;
# - notifications;
# - unread;
-# - feed summary.
+# - feed summary;
+# - inactives;
+# - languages.
# Templates are described in ./templates with the Mako
# template library.
#
@@ -673,4 +675,4 @@ if __name__ == '__main__':
root = pyAggr3g470r()
root.favicon_ico = cherrypy.tools.staticfile.handler(filename=os.path.join(conf.path + "/img/favicon.png"))
cherrypy.config.update({'error_page.404': error_404})
- cherrypy.quickstart(root, "/" ,config=conf.path + "/cfg/cherrypy.cfg")
+ cherrypy.quickstart(root, "/" ,config=conf.path + "/cfg/cherrypy.cfg") \ No newline at end of file
bgstack15