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

merge olaf - InvalidRevisionId fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
629
629
        assert self.writable, "knit is not opened for write"
630
630
        ### FIXME escape. RBC 20060228
631
631
        if contains_whitespace(version_id):
632
 
            raise InvalidRevisionId(version_id)
 
632
            raise InvalidRevisionId(version_id, self.filename)
633
633
        if self.has_version(version_id):
634
634
            raise RevisionAlreadyPresent(version_id, self.filename)
635
635
        self._check_lines_not_unicode(lines)