/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/tests/test_repository.py

  • Committer: Aaron Bentley
  • Date: 2006-09-09 18:52:57 UTC
  • mfrom: (1996 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1997.
  • Revision ID: aaron.bentley@utoronto.ca-20060909185257-ce0ee03ee5125ff1
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
    def initialize(self, a_bzrdir, shared=False):
75
75
        """Initialize a repository in a BzrDir"""
76
76
        t = a_bzrdir.get_repository_transport(self)
77
 
        t.put('format', StringIO(self.get_format_string()))
 
77
        t.put_bytes('format', self.get_format_string())
78
78
        return 'A bzr repository dir'
79
79
 
80
80
    def is_supported(self):