~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/progress.py

  • Committer: Robert Collins
  • Date: 2006-05-09 10:33:08 UTC
  • mto: (1704.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1706.
  • Revision ID: robertc@robertcollins.net-20060509103308-0e6bf1a36cb93d51
Test and correct the problem with nested test logs breaking further in-test logs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
    def child_progress(self, **kwargs):
182
182
        return ChildProgress(**kwargs)
183
183
 
 
184
 
184
185
class DummyProgress(_BaseProgressBar):
185
186
    """Progress-bar standin that does nothing.
186
187