diff -r 95581102e03e -r 28c75409a78f Helpviewer/QtHelpFiltersDialog.py --- a/Helpviewer/QtHelpFiltersDialog.py Wed Oct 09 18:40:07 2013 +0200 +++ b/Helpviewer/QtHelpFiltersDialog.py Wed Oct 09 19:26:41 2013 +0200 @@ -10,7 +10,8 @@ import sqlite3 from PyQt4.QtCore import pyqtSlot, Qt -from PyQt4.QtGui import QDialog, QTreeWidgetItem, QListWidgetItem, QInputDialog, QLineEdit +from PyQt4.QtGui import QDialog, QTreeWidgetItem, QListWidgetItem, \ + QInputDialog, QLineEdit from PyQt4.QtHelp import QHelpEngineCore from .Ui_QtHelpFiltersDialog import Ui_QtHelpFiltersDialog @@ -64,7 +65,8 @@ Private slot to update the attributes depending on the current filter. @param current reference to the current item (QListWidgetitem) - @param previous reference to the previous current item (QListWidgetItem) + @param previous reference to the previous current item + (QListWidgetItem) """ checkedList = [] if current is not None: @@ -164,7 +166,8 @@ for attr in self.__removedAttributes: self.__db.execute( - "DELETE FROM FilterAttributeTable WHERE Name = '{0}'".format(attr)) + "DELETE FROM FilterAttributeTable WHERE Name = '{0}'" + .format(attr)) self.__db.commit() self.__db.close()