Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8.1, 0.8.2, and 0.8.3

hgthread: correct method for returning "no response" to UI thread

Fixes #370

Changeset bc8d9a025fac

Parent 5a9fc130ab1a

by Steve Borho

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

Change 1 of 1 Show Entire File hggtk/​hgthread.py Stacked
 
140
141
142
143
 
144
145
146
 
140
141
142
 
143
144
145
146
@@ -140,7 +140,7 @@
  def prompt_response(self, dialog, response_id):   dialog.destroy()   if response_id == gtk.RESPONSE_DELETE_EVENT: - raise util.Abort('No response') + self.responseq.put(None)   else:   self.responseq.put(chr(response_id))