~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/version.py

  • Committer: John Arbash Meinel
  • Date: 2007-07-13 02:23:34 UTC
  • mfrom: (2592 +trunk) (2612 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2614.
  • Revision ID: john@arbash-meinel.com-20070713022334-qb6ewgo6v4251yd9
[merge] bzr.dev 2612

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    config,
26
26
    errors,
27
27
    osutils,
 
28
    trace,
28
29
    )
29
30
from bzrlib.branch import Branch
30
31
 
40
41
        print "    revision:", revno
41
42
        print "    revid:", src_revision_id
42
43
        print "    branch nick:", src_tree.branch.nick
43
 
    print "Using python interpreter:", sys.executable
44
 
    print "Using python standard library:", os.path.dirname(os.__file__)
 
44
    print "Using Python interpreter:", sys.executable
 
45
    print "Using Python standard library:", os.path.dirname(os.__file__)
45
46
    print "Using bzrlib:",
46
47
    if len(bzrlib.__path__) > 1:
47
48
        # print repr, which is a good enough way of making it clear it's
49
50
        print repr(bzrlib.__path__)
50
51
    else:
51
52
        print bzrlib.__path__[0]
52
 
    print "Using bazaar configuration:", config.config_dir()
 
53
    print "Using Bazaar configuration:", config.config_dir()
 
54
    print "Using Bazaar log file:", trace._bzr_log_filename
53
55
    print
54
56
    print bzrlib.__copyright__
55
57
    print "http://bazaar-vcs.org/"