diff -r 1b59c4ba121e -r 8cd4d08fa9f6 VCS/StatusMonitorThread.py --- a/VCS/StatusMonitorThread.py Fri Mar 11 08:55:14 2011 +0100 +++ b/VCS/StatusMonitorThread.py Fri Mar 11 16:51:57 2011 +0100 @@ -9,6 +9,7 @@ from PyQt4.QtCore import QThread, QMutex, QWaitCondition, pyqtSignal + class VcsStatusMonitorThread(QThread): """ Class implementing the VCS status monitor thread base class. @@ -20,7 +21,7 @@ vcsStatusMonitorData = pyqtSignal(list) vcsStatusMonitorStatus = pyqtSignal(str, str) - def __init__(self, interval, project, vcs, parent = None): + def __init__(self, interval, project, vcs, parent=None): """ Constructor @@ -180,7 +181,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) """ raise RuntimeError('Not implemented')