/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/log.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:
47
47
all the changes since the previous revision that touched hello.c.
48
48
"""
49
49
 
 
50
from __future__ import absolute_import
 
51
 
50
52
import codecs
51
 
from io import BytesIO
52
53
import itertools
53
54
import re
54
55
import sys
83
84
    get_terminal_encoding,
84
85
    terminal_width,
85
86
    )
86
 
from .tree import (
87
 
    find_previous_path,
88
 
    InterTree,
 
87
from .sixish import (
 
88
    BytesIO,
 
89
    range,
 
90
    zip,
89
91
    )
 
92
from .tree import InterTree
90
93
 
91
94
 
92
95
def find_touching_revisions(repository, last_revision, last_tree, last_path):