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

stable thgmq: make confirm message helpful on folding patch

Changeset dc0d0231f39a

Parent 1c2bb1a7c48c

by Yuki KODAMA

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

 
404
405
406
 
407
408
 
 
409
410
411
 
404
405
406
407
408
 
409
410
411
412
413
@@ -404,8 +404,10 @@
  """   if not patch or not self.has_applied():   return + data = dict(target=patch, qtip=self.get_qtip_patchname())   ret = gdialog.Confirm(_('Confirm Fold'), [], None, - _('Do you want to fold?')).run() + _("Do you want to fold un-applied patch '%(target)s'" + " into current patch '%(qtip)s'?") % data).run()   if ret != gtk.RESPONSE_YES:   return   cmdline = ['hg', 'qfold', patch]