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

recovery: improve the confirmation message

Changeset 479efaa554ac

Parent 0a4464881380

by Giampaolo Fadel

Changes to one file · Browse files at 479efaa554ac Showing diff from parent 0a4464881380 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​recovery.py Stacked
 
117
118
119
120
 
121
122
123
 
135
136
137
138
 
139
140
141
 
117
118
119
 
120
121
122
123
 
135
136
137
 
138
139
140
141
@@ -117,7 +117,7 @@
    def _clean_clicked(self, toolbutton, data=None):   response = gdialog.Confirm(_('Confirm clean repository'), [], self, - "%s ?" % os.path.basename(self.root)).run() + _("Clean repository '%s' ?") % os.path.basename(self.root)).run()   if response != gtk.RESPONSE_YES:   return   try: @@ -135,7 +135,7 @@
    def _rollback_clicked(self, toolbutton, data=None):   response = gdialog.Confirm(_('Confirm rollback repository'), [], self, - "%s ?" % os.path.basename(self.root)).run() + _("Rollback repository '%s' ?") % os.path.basename(self.root)).run()   if response != gtk.RESPONSE_YES:   return   cmd = ['rollback']