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

history: default filteropts should be None

Fixes tracebacks on startup if the default config did not set a filter but
it resulted in a filtered log generator.

Changeset 59b594c2aba4

Parent d03d755e33b9

by Steve Borho

Changes to one file · Browse files at 59b594c2aba4 Showing diff from parent d03d755e33b9 Diff from another changeset...

 
46
47
48
49
 
50
51
52
 
466
467
468
469
470
 
471
472
473
 
46
47
48
 
49
50
51
52
 
466
467
468
 
 
469
470
471
472
@@ -46,7 +46,7 @@
  self.filterbox = None   self.details_model = None   self.syncbox = None - self.filteropts = {} + self.filteropts = None   self.bundledir = None   self.bfile = None   os.chdir(self.repo.root) @@ -466,8 +466,7 @@
  opts = {'date': None, 'no_merges':False, 'only_merges':False,   'keyword':[], 'branch':None, 'pats':[], 'filehist':None,   'revrange':[], 'revlist':[], 'noheads':False, - 'branch-view':False, 'rev':[], - 'user':[]} + 'branch-view':False, 'rev':[], 'user':[]}   if self.filteropts is not None: opts = self.filteropts   opts['branch-view'] = self.compactgraph   opts.update(kwopts)