/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/text.py

  • Committer: Jelmer Vernooij
  • Date: 2009-04-03 17:36:43 UTC
  • mfrom: (4222.2.9 ui-username)
  • mto: This revision was merged to the branch mainline in revision 4284.
  • Revision ID: jelmer@samba.org-20090403173643-xcf89aq1bn3yxipt
Merge new username ui call.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        # paints progress, network activity, etc
59
59
        self._progress_view = TextProgressView(self.stderr)
60
60
 
61
 
    def prompt(self, prompt):
62
 
        """Emit prompt on the CLI."""
63
 
        self.stdout.write(prompt)
64
 
 
65
61
    def clear_term(self):
66
62
        """Prepare the terminal for output.
67
63