~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

 * Two new commands 'bzr checkout' and 'bzr update' allow for CVS/SVN-alike
   behaviour. They use the existing serverless-mode and store no data
   locally. As such they are not suitable for use except in high bandwidth
   low latency environments like LAN's or local disk. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
 
131
131
        if kind == 'directory':
132
132
            try:
133
 
                sub_branch = WorkingTree(af)
 
133
                sub_branch = WorkingTree.open(af)
134
134
                sub_tree = True
135
135
            except NotBranchError:
136
136
                sub_tree = False