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

  • Committer: Martin Pool
  • Date: 2005-07-28 11:56:51 UTC
  • Revision ID: mbp@sourcefrog.net-20050728115651-d1b4bab27f138139
- stub out abstract LogFormatter.show method

Show diffs side-by-side

added added

removed removed

Lines of Context:
241
241
        self.to_file = to_file
242
242
        self.show_ids = show_ids
243
243
        self.show_timezone = show_timezone
 
244
 
 
245
 
 
246
    def show(self, revno, rev, delta):
 
247
        raise NotImplementedError('not implemented in abstract base')
244
248
        
245
249
 
246
250