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

Change cache directory name from bazaar => breezy.

Merged from https://code.launchpad.net/~jelmer/brz-git/rename-cachedir/+merge/342533

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        from ...config import config_dir
53
53
        ret = os.path.join(config_dir(), "git")
54
54
    else:
55
 
        ret = os.path.join(xdg_cache_home, "bazaar", "git")
 
55
        ret = os.path.join(xdg_cache_home, "breezy", "git")
56
56
    if not os.path.isdir(ret):
57
57
        os.makedirs(ret)
58
58
    return ret