VCS/VersionControl.py

changeset 110
c9a969db1469
parent 13
1af94a91f439
child 500
c3abc7895a01
child 792
a13346916170
equal deleted inserted replaced
109:9c72858d4b7a 110:c9a969db1469
73 73
74 def vcsExists(self): 74 def vcsExists(self):
75 """ 75 """
76 Public method used to test for the presence of the vcs. 76 Public method used to test for the presence of the vcs.
77 77
78 It must return a bool to indicate the existance and a QString giving 78 It must return a bool to indicate the existance and a string giving
79 an error message in case of failure. 79 an error message in case of failure.
80 80
81 @exception RuntimeError not implemented 81 @exception RuntimeError not implemented
82 """ 82 """
83 raise RuntimeError('Not implemented') 83 raise RuntimeError('Not implemented')
591 """ 591 """
592 Private method to receive the status monitor status. 592 Private method to receive the status monitor status.
593 593
594 It simply reemits the received status. 594 It simply reemits the received status.
595 595
596 @param status status of the monitoring thread (QString, ok, nok or off) 596 @param status status of the monitoring thread (string, ok, nok or off)
597 @param statusMsg explanotory text for the signaled status (string) 597 @param statusMsg explanotory text for the signaled status (string)
598 """ 598 """
599 self.emit(SIGNAL("vcsStatusMonitorStatus(QString, QString)"), status, statusMsg) 599 self.emit(SIGNAL("vcsStatusMonitorStatus(QString, QString)"), status, statusMsg)
600 QApplication.flush() 600 QApplication.flush()
601 601

eric ide

mercurial