/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/ui/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2009-02-23 15:42:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4033.
  • Revision ID: john@arbash-meinel.com-20090223154247-has31lzprui21glu
Track down a few more files that have trailing whitespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
            warnings.warn("%r finished but nothing is active"
88
88
                % (task,))
89
89
        elif task != self._task_stack[-1]:
90
 
            warnings.warn("%r is not the active task %r" 
 
90
            warnings.warn("%r is not the active task %r"
91
91
                % (task, self._task_stack[-1]))
92
92
        else:
93
93
            del self._task_stack[-1]
100
100
 
101
101
    def _progress_updated(self, task):
102
102
        """Called by the ProgressTask when it changes.
103
 
        
 
103
 
104
104
        Should be specialized to draw the progress.
105
105
        """
106
106
        pass