Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

cmdui: make is_running() sure to return boolean value

Qt function checks the type of argument.

Changeset c44381498274

Parent 5fa605133cf4

by Yuya Nishihara

Changes to one file · Browse files at c44381498274 Showing diff from parent 5fa605133cf4 Diff from another changeset...

 
107
108
109
110
 
111
112
113
 
107
108
109
 
110
111
112
113
@@ -107,7 +107,7 @@
  self.pmon = pmon     def is_running(self): - return self.thread and self.thread.isRunning() + return bool(self.thread and self.thread.isRunning())     ### Private Method ###