/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/plugins/propose/gitlabs.py

  • Committer: Breezy landing bot
  • Author(s): Martin
  • Date: 2019-06-16 12:44:32 UTC
  • mfrom: (7340.1.1 bp_propose_config_dir)
  • Revision ID: breezy.the.bot@gmail.com-20190616124432-9bwgy8h4e347nz75
Fix use of config_dir in propose plugin.

Merged from https://code.launchpad.net/~gz/brz/bp_propose_config_dir/+merge/368879

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import os
23
23
 
24
24
from ... import (
 
25
    bedding,
25
26
    branch as _mod_branch,
26
27
    controldir,
27
28
    errors,
96
97
 
97
98
 
98
99
def default_config_path():
99
 
    from breezy.config import config_dir
100
 
    import os
101
 
    return os.path.join(config_dir(), 'gitlab.conf')
 
100
    return os.path.join(bedding.config_dir(), 'gitlab.conf')
102
101
 
103
102
 
104
103
def store_gitlab_token(name, url, private_token):