/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: Scott James Remnant
  • Date: 2005-10-17 12:19:54 UTC
  • mfrom: (13.1.1)
  • Revision ID: scott@netsplit.com-20051017121954-ba970d561da405a2
merge bug fix from Jelmer Vernooij

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
from bzrlib.branch import Branch
23
23
 
24
 
from bzrkapp import BzrkApp
25
 
 
26
24
 
27
25
class cmd_visualise(bzrlib.commands.Command):
28
26
    """Graphically visualise this branch.
46
44
        else:
47
45
            (revno, revid) = revision[0].in_history(branch)
48
46
 
 
47
        from bzrkapp import BzrkApp
 
48
 
49
49
        app = BzrkApp()
50
50
        app.show(branch, revid)
51
51
        app.main()