diff hgext/graphlog.py @ 7435:5e13df32fb74

bundlerepo doesn't really have a dirstate, throw AttributeError if requested
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 27 Nov 2008 16:07:17 +0100
parents df0962f6c54e
children b8c4ba0fd7c4
line wrap: on
line diff
--- a/hgext/graphlog.py	Thu Nov 27 16:07:13 2008 +0100
+++ b/hgext/graphlog.py	Thu Nov 27 16:07:17 2008 +0100
@@ -435,7 +435,7 @@
 
         chlist = other.changelog.nodesbetween(incoming, revs)[0]
         revdag = incoming_revs(other, chlist, opts)
-        other_parents = other.dirstate.parents()
+        other_parents = []
         displayer = show_changeset(ui, other, opts, buffered=True)
         def graphabledag():
             for (ctx, parents) in revdag: