/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 breezy/version.py

  • Committer: Jelmer Vernooij
  • Date: 2019-05-20 03:57:29 UTC
  • mto: This revision was merged to the branch mainline in revision 7328.
  • Revision ID: jelmer@jelmer.uk-20190520035729-9rxvefxkvbbivygy
use default_user_agent function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
import breezy
26
26
from . import (
27
 
    bedding,
 
27
    config,
28
28
    controldir,
29
29
    errors,
30
30
    osutils,
83
83
        to_file.write(breezy.__path__[0] + '\n')
84
84
    if show_config:
85
85
        config_dir = osutils.normpath(
86
 
            bedding.config_dir())  # use native slashes
 
86
            config.config_dir())  # use native slashes
87
87
        if not isinstance(config_dir, text_type):
88
88
            config_dir = config_dir.decode(osutils.get_user_encoding())
89
89
        to_file.write("  Breezy configuration: %s\n" % (config_dir,))