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

  • Committer: Ian Clatworthy
  • Date: 2009-03-25 07:16:47 UTC
  • mto: (4205.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4206.
  • Revision ID: ian.clatworthy@canonical.com-20090325071647-gwfd25b9pbeokjsy
replace show_log_request with a Logger class

Show diffs side-by-side

added added

removed removed

Lines of Context:
2112
2112
            message=None,
2113
2113
            limit=None,
2114
2114
            show_diff=False):
2115
 
        from bzrlib.log import (
2116
 
            LogRequest,
2117
 
            show_log_request,
2118
 
            _get_info_for_log_files)
 
2115
        from bzrlib.log import Logger, LogRequest, _get_info_for_log_files
2119
2116
        direction = (forward and 'forward') or 'reverse'
2120
2117
 
2121
2118
        if change is not None:
2203
2200
                start_revision=rev1, end_revision=rev2, limit=limit,
2204
2201
                message_search=message, delta_type=delta_type,
2205
2202
                diff_type=diff_type, _match_using_deltas=match_using_deltas)
2206
 
            show_log_request(b, lf, rqst)
 
2203
            Logger(b, rqst).show(lf)
2207
2204
        finally:
2208
2205
            b.unlock()
2209
2206