Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable annotate: fix typo of except clause to catch ValueError

Changeset b1d19dce5c96

Parent 1cdf5b4b738d

by Yuya Nishihara

Changes to one file · Browse files at b1d19dce5c96 Showing diff from parent 1cdf5b4b738d Diff from another changeset...

 
311
312
313
314
 
315
316
317
 
311
312
313
 
314
315
316
317
@@ -311,7 +311,7 @@
  try:   thread2._async_raise(self._threadid, KeyboardInterrupt)   self.wait() - except AttributeError, ValueError: + except (AttributeError, ValueError):   pass     def run(self):