~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/ui/text.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-10 17:52:08 UTC
  • mfrom: (5021 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5023.
  • Revision ID: john@arbash-meinel.com-20100210175208-bubuwav4uqigu291
Merge bzr.dev 5021 to resolve NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
238
238
            warnings.warn("%r updated but no tasks are active" %
239
239
                (task,))
240
240
        elif task != self._task_stack[-1]:
241
 
            warnings.warn("%r is not the top progress task %r" %
242
 
                (task, self._task_stack[-1]))
 
241
            # We used to check it was the top task, but it's hard to always
 
242
            # get this right and it's not necessarily useful: any actual
 
243
            # problems will be evident in use
 
244
            #warnings.warn("%r is not the top progress task %r" %
 
245
            #     (task, self._task_stack[-1]))
 
246
            pass
243
247
        self._progress_view.show_progress(task)
244
248
 
245
249
    def _progress_all_finished(self):