~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Martin Pool
  • Date: 2005-06-14 08:16:19 UTC
  • Revision ID: mbp@sourcefrog.net-20050614081619-93214cbfd24bb998
- put trailing newline on newly-created .bzr/README

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
        os.mkdir(self.controlfilename([]))
277
277
        self.controlfile('README', 'w').write(
278
278
            "This is a Bazaar-NG control directory.\n"
279
 
            "Do not change any files in this directory.")
 
279
            "Do not change any files in this directory.\n")
280
280
        self.controlfile('branch-format', 'w').write(BZR_BRANCH_FORMAT)
281
281
        for d in ('text-store', 'inventory-store', 'revision-store'):
282
282
            os.mkdir(self.controlfilename(d))