[Pkg-bazaar-commits] ./bzr-gtk/unstable r296: Merge missing rev1 fix.

Jelmer Vernooij jelmer at samba.org
Fri Apr 10 07:49:52 UTC 2009


------------------------------------------------------------
revno: 296
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: trunk
timestamp: Thu 2007-10-04 19:31:30 +0200
message:
  Merge missing rev1 fix.
modified:
  viz/linegraph.py
    ------------------------------------------------------------
    revno: 290.1.1
    committer: Gary van der Merwe <garyvdm at gmail.com>
    branch nick: gtk
    timestamp: Mon 2007-10-01 23:45:28 +0200
    message:
      Fix Bug #147766 - bzr viz doesn't show revision 1
    modified:
      viz/linegraph.py
-------------- next part --------------
=== modified file 'viz/linegraph.py'
--- a/viz/linegraph.py	2007-09-24 09:47:47 +0000
+++ b/viz/linegraph.py	2007-10-01 21:45:28 +0000
@@ -46,7 +46,8 @@
     
     # We get the mainline so we can pass it to merge_sort to make merge_sort
     # run faster.
-    mainline = branch.revision_history()
+    mainline = [None]
+    mainline.extend(branch.revision_history())
     graph_parents = branch.repository.get_revision_graph(start)
     graph_children = {}
     for revid in graph_parents.iterkeys():



More information about the Pkg-bazaar-commits mailing list