Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

commit: use built-in method for auto-selecting MAR files

Changeset ba3edb4bcf1a

Parent f3cd21468187

by Steve Borho

Changes to 2 files · Browse files at ba3edb4bcf1a Showing diff from parent f3cd21468187 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
493
494
495
496
 
497
498
499
 
493
494
495
 
496
497
498
499
@@ -493,7 +493,7 @@
  'modified':True, 'added':True, 'removed':True, 'deleted':True,   'unknown':True, 'ignored':False,   'exclude':[], 'include':[], - 'check': False, 'git':False, 'logfile':'', 'addremove':False, + 'check': True, 'git':False, 'logfile':'', 'addremove':False,   }     dialog = GCommit(u, repo, cwd, files, cmdoptions, main)
Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
554
555
556
557
558
 
559
560
561
 
554
555
556
 
 
557
558
559
560
@@ -554,8 +554,7 @@
  for file in changes:   mst = file in ms and ms[file].upper() or ""   file = util.localpath(file) - checked = file in recheck or char in 'MAR' - self.model.append([checked, char, toutf(file), file, mst]) + self.model.append([file in recheck, char, toutf(file), file, mst])     self._update_check_count()