/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

Support user.signingkey configuration variable in .git/config.

Merged from https://code.launchpad.net/~jelmer/brz/local-git-key/+merge/381000

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
plugins.
35
35
"""
36
36
 
 
37
from __future__ import absolute_import
 
38
 
37
39
import os
38
40
import re
39
41
import sys
61
63
 
62
64
_MODULE_PREFIX = "breezy.plugins."
63
65
 
64
 
COMPILED_EXT = ".pyc"
 
66
if __debug__ or sys.version_info > (3,):
 
67
    COMPILED_EXT = ".pyc"
 
68
else:
 
69
    COMPILED_EXT = ".pyo"
65
70
 
66
71
 
67
72
def disable_plugins(state=None):