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

status: whitespace and comment cleanups

Changeset e00b1737b52b

Parent 36473ed0b590

by Steve Borho

Changes to one file · Browse files at e00b1737b52b Showing diff from parent 36473ed0b590 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​status.py Stacked
 
501
502
503
504
 
 
505
506
507
 
1086
1087
1088
1089
1090
1091
1092
 
1093
1094
1095
1096
1097
1098
1099
1100
1101
 
501
502
503
 
504
505
506
507
508
 
1087
1088
1089
 
1090
1091
 
1092
1093
1094
1095
 
 
 
1096
1097
1098
@@ -501,7 +501,8 @@
  file_count = file_count + 1   if row[FM_CHECKED]:   check_count = check_count + 1 - self.counter.set_text(_('%d selected, %d total') % (check_count, file_count)) + self.counter.set_text(_('%d selected, %d total') % (check_count, + file_count))   if self.selcb:   self.selcb.set_active(file_count and file_count == check_count)   @@ -1086,16 +1087,12 @@
  return     # Create new opts, so nothing unintented gets through. - # commands.table revert key changed after 0.9.5, in change d4ec6d61b3ee   key = '^revert' in commands.table and '^revert' or 'revert'   revertopts = self.merge_opts(commands.table[key][1], - ('include', 'exclude', 'rev')) + ('include', 'exclude', 'rev'))   def dohgrevert():   commands.revert(self.ui, self.repo, *wfiles, **revertopts)   - # TODO: Ask which revision when multiple parents (currently just - # shows abort message) - # TODO: Don't need to prompt when reverting added or removed files   if self.count_revs() == 1:   # rev options needs extra tweaking since is not an array for   # revert command