~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/msgeditor.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-02-10 10:46:00 UTC
  • mfrom: (3996.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090210104600-o9xd7lm1d91067oj
Show all merged revisions in commit template (Colin Bennett)

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
    from bzrlib.status import show_tree_status
249
249
    status_tmp = StringIO()
250
250
    show_tree_status(working_tree, specific_files=specific_files, 
251
 
                     to_file=status_tmp)
 
251
                     to_file=status_tmp, verbose=True)
252
252
    return status_tmp.getvalue()
253
253
 
254
254