Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

quickop: fix AttributeError

Closes #788

Changeset 110e4040e409

Parent 44d74abab895

by Yuki KODAMA

Changes to one file · Browse files at 110e4040e409 Showing diff from parent 44d74abab895 Diff from another changeset...

 
269
270
271
272
273
274
 
275
276
277
278
279
 
269
270
271
 
272
 
273
274
 
275
276
277
@@ -269,11 +269,9 @@
  if not list:   gtklib.idle_add_single_call(self.response, gtk.RESPONSE_CLOSE)   return -   cmdline = ['hg', self.command, '--verbose'] + list - if self.nobackup.get_active(): + if hasattr(self, 'nobackup') and self.nobackup.get_active():   cmdline.append('--no-backup') -   def cmd_done(returncode, useraborted):   self.switch_to(MODE_NORMAL, cmd=False)   if returncode == 0: