~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Martin Pool
  • Date: 2007-03-06 10:22:33 UTC
  • mto: (2321.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: mbp@sourcefrog.net-20070306102233-xr93c99y5y7pod64
docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
287
287
            pass
288
288
            # mutter("%r is already versioned", abspath)
289
289
        elif sub_tree:
 
290
            # XXX: This is wrong; people *might* reasonably be trying to add
 
291
            # subtrees as subtrees.  This should probably only be done in formats 
 
292
            # which can represent subtrees, and even then perhaps only when
 
293
            # the user asked to add subtrees.  mbp 20070306
290
294
            mutter("%r is a nested bzr tree", abspath)
291
295
        else:
292
296
            __add_one(tree, inv, parent_ie, directory, kind, action)