~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/version.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-03-12 22:22:22 UTC
  • mfrom: (2347.1.1 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070312222222-41194ff2fd4e23fe
(John Whitley) Print out the location of ~/.bazaar as part of 'bzr --version'

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import sys
21
21
 
22
22
import bzrlib
23
 
from bzrlib import errors, osutils
 
23
from bzrlib import config, errors, osutils
24
24
from bzrlib.branch import Branch
25
25
 
26
26
 
45
45
        print repr(bzrlib.__path__)
46
46
    else:
47
47
        print bzrlib.__path__[0]
48
 
 
 
48
    print "Using bazaar configuration:", config.config_dir()
49
49
    print
50
50
    print bzrlib.__copyright__
51
51
    print "http://bazaar-vcs.org/"