~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

Fix #87179 by using the short status format when the short format is used for log.

* bzrlib/tests/blackbox/test_log.py:
(TestLog.test_log_short_verbose): Test that we use the right
status format.

* bzrlib/log.py:
(ShortLogFormatter.log_revision): Set short_status to True.

Show diffs side-by-side

added added

removed removed

Lines of Context:
845
845
        # TODO: Why not show the modified files in a shorter form as
846
846
        # well? rewrap them single lines of appropriate length
847
847
        if revision.delta is not None:
848
 
            revision.delta.show(to_file, self.show_ids)
 
848
            revision.delta.show(to_file, self.show_ids, short_status=True)
849
849
        to_file.write('\n')
850
850
 
851
851