/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: Daniel Schierbeck
  • Date: 2007-10-21 16:25:29 UTC
  • Revision ID: daniel.schierbeck@gmail.com-20071021162529-tc18s8lxywv2aitu
Removed BranchWindow.set_branch(), used constructor instead.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
    :return: The viz window object.
226
226
    """
227
227
    from viz.branchwin import BranchWindow
228
 
    pp = BranchWindow()
229
 
    pp.set_branch(branch, revision, limit)
230
 
    # cleanup locks when the window is closed
231
 
    return pp
 
228
    return BranchWindow(branch, revision, limit)
232
229
 
233
230
 
234
231
class cmd_visualise(Command):