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

cmdui: self.thread can be None

Changeset 4bf49be33756

Parent fdaf8e9990a1

by Steve Borho

Changes to one file · Browse files at 4bf49be33756 Showing diff from parent fdaf8e9990a1 Diff from another changeset...

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