/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-25 23:03:05 UTC
  • Revision ID: mbp@sourcefrog.net-20050725230305-13a43f307ecb8b8d
- add back bzrlib.log.show_one_log for benefit of plugins that want it

Show diffs side-by-side

added added

removed removed

Lines of Context:
308
308
        return FORMATTERS[name](*args, **kwargs)
309
309
    except IndexError:
310
310
        raise BzrCommandError("unknown log formatter: %r" % name)
 
311
 
 
312
def show_one_log(revno, rev, delta, verbose, to_file, show_timezone):
 
313
    # deprecated; for compatability
 
314
    lf = LongLogFormatter(to_file=to_file, show_timezone=show_timezone)
 
315
    lf.show(revno, rev, delta)