/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-18 12:21:32 UTC
  • Revision ID: scott@netsplit.com-20051018122132-2e7a3536cbc8de29
Branch.open_containing now returns a tuple

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    aliases = [ "visualize", "vis", "viz" ]
37
37
 
38
38
    def run(self, location=".", revision=None):
39
 
        branch = Branch.open_containing(location)
 
39
        (branch, path) = Branch.open_containing(location)
40
40
        if revision is None:
41
41
            revid = branch.last_revision()
42
42
            if revid is None: