--- a/Graphics/ModuleItem.py Sun Oct 06 19:52:33 2013 +0200 +++ b/Graphics/ModuleItem.py Mon Oct 07 19:10:11 2013 +0200 @@ -136,7 +136,8 @@ @param widget optional reference to the widget painted on (QWidget) """ pen = self.pen() - if (option.state & QStyle.State_Selected) == QStyle.State(QStyle.State_Selected): + if (option.state & QStyle.State_Selected) == \ + QStyle.State(QStyle.State_Selected): pen.setWidth(2) else: pen.setWidth(1) @@ -161,8 +162,8 @@ Public method to build a string to persist the specific item data. This string must start with ", " and should be built like - "attribute=value" with pairs separated by ", ". value must not contain ", " - or newlines. + "attribute=value" with pairs separated by ", ". value must not + contain ", " or newlines. @return persistence data (string) """