/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/mutabletree.py

  • Committer: Shannon Weyrick
  • Date: 2011-08-06 01:07:06 UTC
  • mto: This revision was merged to the branch mainline in revision 6086.
  • Revision ID: weyrick@mozek.us-20110806010706-sdyh07xpwecr7xz7
fix default to 1 meg

Show diffs side-by-side

added added

removed removed

Lines of Context:
541
541
class _SmartAddHelper(object):
542
542
    """Helper for MutableTree.smart_add."""
543
543
 
544
 
    _DEFAULT_LARGE_FILE_THRESHOLD = 2<<20; # 1 MB
 
544
    _DEFAULT_LARGE_FILE_THRESHOLD = 1<<20; # 1 MB
545
545
 
546
546
    def get_inventory_delta(self):
547
547
        return self._invdelta.values()