# HG changeset patch
# User Sune Foldager <c...@cyanite.org>
# Date 1253033513 -7200
# Node ID 3fc4c85abd0e057942518dc321892b538b0ad5dd
# Parent  c489af6955a8528d02d073d245eb9bb6c21f8c3d
revgraph: fix bug in filtered_log_generator

diff --git a/tortoisehg/hgtk/logview/revgraph.py 
b/tortoisehg/hgtk/logview/revgraph.py
--- a/tortoisehg/hgtk/logview/revgraph.py
+++ b/tortoisehg/hgtk/logview/revgraph.py
@@ -417,7 +417,7 @@
         df = util.matchdate(opts['date'])
 
     stack = []
-    get = util.cachefunc(lambda r: repo.changectx(r).changeset())
+    get = util.cachefunc(lambda r: repo[r])
     if pats != None:
         pats = ['path:'+p for p in pats]
     changeiter, matchfn = cmdutil.walkchangerevs(repo.ui, repo, pats, get, 
opts)

------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
Tortoisehg-develop mailing list
Tortoisehg-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop

Reply via email to