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

history: Changelog dialog expects canonical file patterns

Changeset bd707c62c507

Parent 38bdc7be9af2

by Steve Borho

Changes to one file · Browse files at bd707c62c507 Showing diff from parent 38bdc7be9af2 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​history.py Stacked
 
746
747
748
749
 
 
 
 
 
 
746
747
748
 
749
750
751
752
753
@@ -746,4 +746,8 @@
  'date':None, 'only_merges':None, 'prune':[], 'git':False,   'verbose':False, 'include':[], 'exclude':[]   } - return GLog(ui, None, None, pats, cmdoptions, True) + root = hglib.rootpath() + canonpats = [] + for f in pats: + canonpats.append(util.canonpath(root, os.getcwd(), f)) + return GLog(ui, None, None, canonpats, cmdoptions, True)