/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-16 15:31:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1932.
  • Revision ID: john@arbash-meinel.com-20060816153134-22897affebb44911
Alexander Belchenko: Fix add --dry-run

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):