/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/repofmt/groupcompress_repo.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-22 15:13:45 UTC
  • mfrom: (4431.3.6 1.16)
  • mto: This revision was merged to the branch mainline in revision 4468.
  • Revision ID: john@arbash-meinel.com-20090622151345-vmwf3rs4903r1hmn
Merge bzr-1.16 back into trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1071
1071
        if not target_format.rich_root_data:
1072
1072
            raise errors.BadConversionTarget(
1073
1073
                'Does not support rich root data.', target_format)
1074
 
        if not getattr(target_format, 'supports_tree_reference', False):
 
1074
        if (self.supports_tree_reference and 
 
1075
            not getattr(target_format, 'supports_tree_reference', False)):
1075
1076
            raise errors.BadConversionTarget(
1076
1077
                'Does not support nested trees', target_format)
1077
1078