diff -r 9986ec0e559a -r 10516539f238 Helpviewer/AdBlock/AdBlockTreeWidget.py --- a/Helpviewer/AdBlock/AdBlockTreeWidget.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Helpviewer/AdBlock/AdBlockTreeWidget.py Fri Oct 18 23:00:41 2013 +0200 @@ -10,8 +10,8 @@ from __future__ import unicode_literals # __IGNORE_WARNING__ from PyQt4.QtCore import Qt -from PyQt4.QtGui import QAbstractItemView, QFont, QTreeWidgetItem, QInputDialog, \ - QLineEdit, QMenu, QApplication, QColor +from PyQt4.QtGui import QAbstractItemView, QFont, QTreeWidgetItem, \ + QInputDialog, QLineEdit, QMenu, QApplication, QColor from E5Gui.E5TreeWidget import E5TreeWidget @@ -25,7 +25,7 @@ Constructor @param subscription reference to the subscription (AdBlockSubscription) - @param parenbt reference to the parent widget (QWidget) + @param parent reference to the parent widget (QWidget) """ super(AdBlockTreeWidget, self).__init__(parent) @@ -221,7 +221,8 @@ self.__itemChangingBlock = True self.__topItem.setText(0, - self.trUtf8("{0} (recently updated)").format(self.__subscription.title())) + self.trUtf8("{0} (recently updated)").format( + self.__subscription.title())) self.__itemChangingBlock = False def __adjustItemFeatures(self, itm, rule):