~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Alexander Belchenko
  • Date: 2006-11-17 17:28:35 UTC
  • mto: This revision was merged to the branch mainline in revision 465.
  • Revision ID: bialix@ukr.net-20061117172835-ylmharoxlxnf0oux
ChangeĀ formatting

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
from bzrlib.option import Option
9
9
 
10
10
 
11
 
FORMAT = '%23s: %s'
 
11
FORMAT = '%18s: %s'
12
12
 
13
13
 
14
14
def _bzr_system_info(to_file):
24
24
    from bzrlib import trace
25
25
 
26
26
    print >>to_file, FORMAT % ('Python interpreter', sys.executable)
27
 
    print >>to_file, FORMAT % ('Python standard library',
 
27
    print >>to_file, FORMAT % ('Python library',
28
28
                               os.path.dirname(site.__file__))
29
29
 
30
30
    print >>to_file, FORMAT % ('bzr executable', osutils.realpath(sys.argv[0]))