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

commit: slight simplificaton

Changeset cee7e0703282

Parent 664b6f68b525

by Steve Borho

Changes to one file · Browse files at cee7e0703282 Showing diff from parent 664b6f68b525 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
669
670
671
672
 
673
674
675
 
669
670
671
 
672
673
674
675
@@ -669,7 +669,7 @@
  fnames = [ file[FM_PATH_UTF8] for file in self.filemodel   if file[FM_CHECKED] ]   buf.delete_selection(True, True) - buf.insert_at_cursor('\n'.join([fname for fname in fnames])) + buf.insert_at_cursor('\n'.join(fnames))      def run(_ui, *pats, **opts):