~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: John Arbash Meinel
  • Date: 2005-07-11 20:05:06 UTC
  • mto: (1185.11.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050711200506-c5072c467f0f70df
Fixed bzr root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
877
877
    def run(self, filename=None):
878
878
        """Print the branch root."""
879
879
        b = find_branch(filename)
880
 
        print getattr(b, 'base', None) or getattr(b, 'baseurl')
 
880
        print b._transport.base
881
881
 
882
882
 
883
883
class cmd_log(Command):