/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/plugin.py

  • Committer: Breezy landing bot
  • Author(s): Martin
  • Date: 2019-06-16 01:52:23 UTC
  • mfrom: (7336.2.1 split_config_env)
  • Revision ID: breezy.the.bot@gmail.com-20190616015223-0kkno5fepi7tmbqy
Split non-ini config methods to bedding

Merged from https://code.launchpad.net/~gz/brz/split_config_env/+merge/368863

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
from importlib import util as importlib_util
50
50
 
51
51
from breezy import (
52
 
    config,
 
52
    bedding,
53
53
    debug,
54
54
    errors,
55
55
    help_topics,
402
402
 
403
403
 
404
404
def get_user_plugin_path():
405
 
    return osutils.pathjoin(config.config_dir(), 'plugins')
 
405
    return osutils.pathjoin(bedding.config_dir(), 'plugins')
406
406
 
407
407
 
408
408
def record_plugin_warning(warning_message):