Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

quickop: fix a hard crash after deleting unversioned files

Fixes issue #614

Changeset a4fefd4e3dbc

Parent 2e8913a04309

by Yuki KODAMA

Changes to one file · Browse files at a4fefd4e3dbc Showing diff from parent 2e8913a04309 Diff from another changeset...

 
244
245
246
247
 
248
249
250
 
254
255
256
257
 
258
259
260
 
244
245
246
 
247
248
249
250
 
254
255
256
 
257
258
259
260
@@ -244,7 +244,7 @@
  pass     if not list: - self.destroy() + gobject.idle_add(self.response, gtk.RESPONSE_CLOSE)   return     cmdline = ['hg', self.command, '--verbose'] + list @@ -254,7 +254,7 @@
  if returncode == 0:   shlib.shell_notify(list)   if not self.cmd.is_show_log(): - self.destroy() + self.response(gtk.RESPONSE_CLOSE)   self.switch_to(MODE_WORKING)   self.cmd.execute(cmdline, cmd_done)