/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Vincent Ladeuil
  • Date: 2008-05-05 18:18:08 UTC
  • mfrom: (487 trunk)
  • mto: (487.1.1 gtk)
  • mto: This revision was merged to the branch mainline in revision 490.
  • Revision ID: v.ladeuil+lp@free.fr-20080505181808-ilh1cyl2v4crpc5i
merge bzr-gtk trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
import bzrlib
39
39
 
40
 
version_info = (0, 94, 0, 'rc', 1)
 
40
version_info = (0, 95, 0, 'dev', 1)
41
41
 
42
42
if version_info[3] == 'final':
43
43
    version_string = '%d.%d.%d' % version_info[:3]
317
317
        else:
318
318
            revision_id = getattr(tree, 'get_revision_id', lambda: None)()
319
319
 
320
 
        window = GAnnotateWindow(all, plain)
 
320
        window = GAnnotateWindow(all, plain, branch=br)
321
321
        window.connect("destroy", lambda w: gtk.main_quit())
322
322
        config = GAnnotateConfig(window)
323
323
        window.show()