/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/store/revision/text.py

  • Committer: John Arbash Meinel
  • Date: 2006-11-10 21:06:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2159.
  • Revision ID: john@arbash-meinel.com-20061110210611-ee346404477ecb86
Fix imports to ensure modules are loaded before they are used

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
        try:
107
107
            return self.text_store.get(revision_id)
108
108
        except (IndexError, KeyError):
109
 
            raise bzrlib.errors.NoSuchRevision(self, revision_id)
 
109
            raise errors.NoSuchRevision(self, revision_id)
110
110
 
111
111
    def _get_signature_text(self, revision_id, transaction):
112
112
        """See RevisionStore._get_signature_text()."""