From b30c276dedccbc11645d415610fa528688396dc3 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Fri, 30 Jul 2010 08:12:45 +0200 Subject: Code improvement. 'pylint --max-line-length=200 pyAggr3g470r.py = 8.41/10' --- pyAggr3g470r.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'pyAggr3g470r.py') diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 4f9795af..cee15f51 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -11,11 +11,8 @@ import os import time import sqlite3 import cherrypy -import operator import threading -from cherrypy.lib.static import serve_file - import utils import feedgetter import PyQRNative @@ -245,12 +242,12 @@ class Root: html += "Minimum size of a word: " html += """
\n""" html += "

Tag cloud

\n" html += '
' + \ @@ -805,7 +802,7 @@ class Root: html += """
""" if feed_id in self.feeds.keys(): utils.remove_feed(self.feeds[feed_id][4]) - html+= """

All articles from the feed %s are now removed from the base.


""" % \ + html += """

All articles from the feed %s are now removed from the base.


""" % \ (self.feeds[feed_id][3].encode('utf-8'),) else: return self.error_page("This feed do not exists.") -- cgit