~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-24 19:24:06 UTC
  • mto: (1946.2.8 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1988.
  • Revision ID: john@arbash-meinel.com-20060824192406-3bcf52af61709d31
Fix 2 calls to 'put()' that were using strings instead of files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1248
1248
                        "use bzrlib.urlutils.escape")
1249
1249
                    
1250
1250
            url = urlutils.relative_url(self.base, url)
1251
 
            self.control_files.put('parent', url + '\n')
 
1251
            self.control_files.put('parent', StringIO(url + '\n'))
1252
1252
 
1253
1253
    @deprecated_function(zero_nine)
1254
1254
    def tree_config(self):