~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-30 00:15:51 UTC
  • mto: This revision was merged to the branch mainline in revision 6408.
  • Revision ID: jelmer@samba.org-20111230001551-inxfdr5nnjvs72fv
Fix typo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1300
1300
        :param updated_flags: Dictionary mapping feature names to necessities
1301
1301
            A necessity can be None to indicate the feature should be removed
1302
1302
        """
1303
 
        self._format.update_feature_flags(updated_flags)
 
1303
        self._format._update_feature_flags(updated_flags)
1304
1304
        self.control_transport.put_bytes('format', self._format.as_string())
1305
1305
 
1306
1306