/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/commit.py

  • Committer: Martin Pool
  • Date: 2005-09-22 05:19:41 UTC
  • Revision ID: mbp@sourcefrog.net-20050922051940-40479637a0ddad24
- remove unneeded assertion about file-ids

Show diffs side-by-side

added added

removed removed

Lines of Context:
478
478
 
479
479
 
480
480
    def _add_text_to_weave(self, file_id, new_lines, parents):
481
 
        if file_id.startswith('__'):
482
 
            raise ValueError('illegal file-id %r for text file' % file_id)
483
481
        self.weave_store.add_text(file_id, self.rev_id, new_lines, parents)
484
482
 
485
483