~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Ian Clatworthy
  • Date: 2009-02-23 22:36:50 UTC
  • mfrom: (4032.2.1 bzr.info-v-speed)
  • mto: This revision was merged to the branch mainline in revision 4037.
  • Revision ID: ian.clatworthy@canonical.com-20090223223650-zo9cr6woe9631q1e
faster info -v (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
376
376
    elif branch is not None:
377
377
        _show_missing_revisions_branch(branch, outfile)
378
378
    if branch is not None:
379
 
        stats = _show_branch_stats(branch, verbose==2, outfile)
 
379
        show_committers = verbose >= 2
 
380
        stats = _show_branch_stats(branch, show_committers, outfile)
380
381
    else:
381
382
        stats = repository.gather_stats()
382
383
    if branch is None and working is None: