/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/progress.py

  • Committer: Martin Pool
  • Date: 2009-06-05 23:00:37 UTC
  • mto: This revision was merged to the branch mainline in revision 4418.
  • Revision ID: mbp@sourcefrog.net-20090605230037-662frzolf4cph3a3
Deprecate DotsProgressBar and TTYProgressBar

Show diffs side-by-side

added added

removed removed

Lines of Context:
244
244
 
245
245
class DotsProgressBar(_BaseProgressBar):
246
246
 
 
247
    @deprecated_function(deprecated_in((1, 16, 0)))
247
248
    def __init__(self, **kwargs):
248
249
        _BaseProgressBar.__init__(self, **kwargs)
249
250
        self.last_msg = None
292
293
    """
293
294
    SPIN_CHARS = r'/-\|'
294
295
 
 
296
    @deprecated_function(deprecated_in((1, 16, 0)))
295
297
    def __init__(self, **kwargs):
296
298
        from bzrlib.osutils import terminal_width
297
299
        _BaseProgressBar.__init__(self, **kwargs)