~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin Pool
  • Date: 2005-05-26 16:09:33 UTC
  • Revision ID: mbp@sourcefrog.net-20050526160933-bf9355014f417bdb
- Set Branch.base in class def to avoid it being undefined
  when introspecting half-constructed branches

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        Base directory of the branch.
88
88
    """
89
89
    _lockmode = None
 
90
    base = None
90
91
    
91
92
    def __init__(self, base, init=False, find_root=True, lock_mode='w'):
92
93
        """Create new branch object at a particular location.