~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/textui.py

  • Committer: Aaron Bentley
  • Date: 2006-06-21 14:30:57 UTC
  • mfrom: (1801.1.1 bzr.dev)
  • mto: This revision was merged to the branch mainline in revision 1803.
  • Revision ID: abentley@panoramicfeedback.com-20060621143057-776e4b8d707e430e
Install benchmarks. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Bazaar -- distributed version control
 
1
# Bazaar-NG -- distributed version control
2
2
#
3
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
3
# Copyright (C) 2005, 2006 by Canonical Ltd
4
4
#
5
5
# This program is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU General Public License as published by
14
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, write to the Free Software
17
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
18
 
19
19
import sys
20
20
 
25
25
        kind_ch = '/'
26
26
    elif kind == 'symlink':
27
27
        kind_ch = '->'
28
 
    elif kind == 'file':
 
28
    else:
 
29
        assert kind == 'file', ("can't handle file of type %r" % kind)
29
30
        kind_ch = ''
30
 
    else:
31
 
        raise ValueError(kind)
32
 
 
33
 
    if len(state) != 1:
34
 
        raise ValueError(state)
35
 
 
 
31
 
 
32
    assert len(state) == 1
 
33
        
36
34
    if to_file is None:
37
35
        to_file = sys.stdout
38
36
 
39
37
    to_file.write(state + '       ' + name + kind_ch + '\n')
40
 
 
 
38