diff -r 1b59c4ba121e -r 8cd4d08fa9f6 Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py --- a/Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py Fri Mar 11 08:55:14 2011 +0100 +++ b/Plugins/VcsPlugins/vcsSubversion/SvnStatusMonitorThread.py Fri Mar 11 16:51:57 2011 +0100 @@ -13,11 +13,12 @@ import Preferences + class SvnStatusMonitorThread(VcsStatusMonitorThread): """ Class implementing the VCS status monitor thread class for Subversion. """ - def __init__(self, interval, project, vcs, parent = None): + def __init__(self, interval, project, vcs, parent=None): """ Constructor @@ -52,7 +53,7 @@ <li>" " path is back at normal</li> </ul> - @return tuple of flag indicating successful operation (boolean) and + @return tuple of flag indicating successful operation (boolean) and a status message in case of non successful operation (string) """ self.shouldUpdate = False @@ -109,8 +110,8 @@ process.kill() process.waitForFinished() return False, \ - str(process.readAllStandardError(), - Preferences.getSystem("IOEncoding"), + str(process.readAllStandardError(), + Preferences.getSystem("IOEncoding"), 'replace') else: process.kill()