diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py --- a/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py Fri Oct 18 23:00:41 2013 +0200 @@ -4,7 +4,8 @@ # """ -Module implementing a dialog to show the output of the svn proplist command process. +Module implementing a dialog to show the output of the svn proplist command +process. """ from __future__ import unicode_literals # __IGNORE_WARNING__ @@ -25,7 +26,8 @@ class SvnPropListDialog(QWidget, Ui_SvnPropListDialog): """ - Class implementing a dialog to show the output of the svn proplist command process. + Class implementing a dialog to show the output of the svn proplist command + process. """ def __init__(self, vcs, parent=None): """ @@ -135,7 +137,8 @@ def __finish(self): """ - Private slot called when the process finished or the user pressed the button. + Private slot called when the process finished or the user pressed the + button. """ if self.process is not None and \ self.process.state() != QProcess.NotRunning: @@ -192,13 +195,15 @@ 'replace') if self.rx_path.exactMatch(s): if self.lastProp: - self.__generateItem(self.lastPath, self.lastProp, self.propBuffer) + self.__generateItem( + self.lastPath, self.lastProp, self.propBuffer) self.lastPath = self.rx_path.cap(1) self.lastProp = None self.propBuffer = "" elif self.rx_prop.exactMatch(s): if self.lastProp: - self.__generateItem(self.lastPath, self.lastProp, self.propBuffer) + self.__generateItem( + self.lastPath, self.lastProp, self.propBuffer) self.lastProp = self.rx_prop.cap(1) self.propBuffer = self.rx_prop.cap(2) else: