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

stable commit: improve status message after committing

Changeset a535212e5bbc

Parent 1dc8771a7a8f

by Yuki KODAMA

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

 
1170
1171
1172
1173
 
 
 
 
1174
1175
1176
 
1170
1171
1172
 
1173
1174
1175
1176
1177
1178
1179
@@ -1170,7 +1170,10 @@
  self.last_commit_id = self.get_tip_rev(True)   if self.notify_func:   self.notify_func(*self.notify_args) - text = _('Finish committing') + if autopush: + text = _('Finish committing and pushing') + else: + text = _('Finish committing')   elif return_code is None:   text = _('Aborted committing')   else: