/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/tests/blackbox/test_plugins.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:
22
22
from ... import (
23
23
    commands,
24
24
    )
 
25
from ...sixish import PY3
25
26
from ..test_plugins import (
26
27
    BaseTestPlugins,
27
28
    )
31
32
 
32
33
    def run_bzr_utf8_out(self, *args, **kwargs):
33
34
        out, _ = self.run_bzr(*args, **kwargs)
34
 
        return out
 
35
        if PY3:
 
36
            return out
 
37
        else:
 
38
            return out.decode('utf-8')
35
39
 
36
40
    def split_help_commands(self):
37
41
        help = {}