~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 08:08:34 UTC
  • mto: (4035.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4037.
  • Revision ID: ian.clatworthy@canonical.com-20090223080834-0oby0bf0faj4ihq2
omit branch committers from info -v (now requires -vv)

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: