~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-17 13:53:36 UTC
  • mfrom: (1939 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1940.
  • Revision ID: john@arbash-meinel.com-20060817135336-100de82962355d3b
[merge] bzr.dev 1939

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
    """
145
145
    file_list = _prepare_file_list(file_list)
146
146
    tree = WorkingTree.open_containing(file_list[0])[0]
147
 
    return smart_add_tree(tree, file_list, recurse, action=action)
 
147
    return smart_add_tree(tree, file_list, recurse, action=action, save=save)
148
148
 
149
149
 
150
150
class FastPath(object):