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

datamine: prevent traceback when returned column is None

Changeset 6f92d0487806

Parent 8002824a30fe

by Steve Borho

Changes to one file · Browse files at 6f92d0487806 Showing diff from parent 8002824a30fe Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​datamine.py Stacked
 
637
638
639
640
 
641
642
643
 
637
638
639
 
640
641
642
643
@@ -637,7 +637,7 @@
  # It's possible that the requested change was not found in the   # file's filelog history. In that case, no row will be   # selected. - if path != None: + if path != None and column != None:   treeview.row_activated(path, column)     def trigger_annotate(self, rev, objs):