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

hggtk: fix shell notification in commit

Changeset b31c1f55fdbb

Parent 5b32caf33fd4

by Adrian Buehlmann

Changes to one file · Browse files at b31c1f55fdbb Showing diff from parent 5b32caf33fd4 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​commit.py Stacked
 
388
389
390
 
391
 
392
393
394
395
396
397
398
 
408
409
410
411
 
412
413
414
 
388
389
390
391
392
393
394
395
396
 
397
398
399
 
409
410
411
 
412
413
414
415
@@ -388,11 +388,12 @@
  if not self.ready_message():   return   + commitable = 'MAR'   if self.merging: + commit_list = self.relevant_files(commitable)   # merges must be committed without specifying file list.   self.hg_commit([])   else: - commitable = 'MAR'   addremove_list = self.relevant_files('?!')   if len(addremove_list) and self.should_addremove(addremove_list):   commitable += '?!' @@ -408,7 +409,7 @@
  return   self.reload_status()   shlib.update_thgstatus(self.ui, self.repo.root, wait=True) - files = [self.repo.wjoin(x) for x in self.relevant_files('MAR')] + files = [self.repo.wjoin(x) for x in commit_list]   shlib.shell_notify(files)     def commit_selected(self, files):