Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

status: use run() method to launch changelog tool

Changeset 0df59976deff

Parent ded9fae75646

by Steve Borho

Changes to 2 files · Browse files at 0df59976deff Showing diff from parent ded9fae75646 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​history.py Stacked
 
957
958
959
960
 
961
962
963
 
964
 
957
958
959
 
960
961
962
 
963
964
@@ -957,8 +957,8 @@
  'limit':0, 'rev':[], 'removed':False, 'no_merges':False,   'date':None, 'only_merges':None, 'prune':[], 'git':False,   'verbose':False, 'include':[], 'exclude':[], 'from-synch':False, - 'orig-tip':None, 'filehist':None + 'orig-tip':None, 'filehist':None, 'canonpats':[]   }   cmdoptions.update(opts) - pats = hglib.canonpaths(pats) + pats = hglib.canonpaths(pats) + cmdoptions['canonpats']   return GLog(ui, None, None, pats, cmdoptions)
Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
1245
1246
1247
1248
 
1249
1250
1251
 
1245
1246
1247
 
1248
1249
1250
1251
@@ -1245,7 +1245,7 @@
  self.hg_remove(files)   def log(menuitem, files):   from hggtk import history - dlg = history.GLog(self.ui, self.repo, self.cwd, files, self.opts) + dlg = history.run(self.ui, canonpats=files)   dlg.display()   def forget(menuitem, files):   self.hg_forget(files)