/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/git/send.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-06 02:25:29 UTC
  • mto: This revision was merged to the branch mainline in revision 7150.
  • Revision ID: jelmer@jelmer.uk-20181106022529-qlctdqketvoibpvz
Simplify brz-git, drop imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# along with this program; if not, write to the Free Software
19
19
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 
21
 
"""Support in "bzr send" for git-am style patches."""
 
21
"""Support in "brz send" for git-am style patches."""
22
22
 
23
23
from __future__ import absolute_import
24
24
 
25
25
import time
26
 
from .. import __version__ as bzr_version
 
26
from .. import __version__ as brz_version
27
27
from .. import (
28
28
    branch as _mod_branch,
29
29
    diff as _mod_diff,
34
34
 
35
35
from ..merge_directive import BaseMergeDirective
36
36
 
37
 
from . import (
38
 
    version_info as bzr_git_version_info,
39
 
    )
40
37
from .mapping import (
41
38
    object_mode,
42
39
    )
53
50
    )
54
51
 
55
52
 
56
 
version_tail = "bzr %s, bzr-git %d.%d.%d, dulwich %d.%d.%d" % (
57
 
    (bzr_version, ) + bzr_git_version_info[:3] + dulwich_version[:3])
 
53
version_tail = "Breezy %s, dulwich %d.%d.%d" % (
 
54
    (brz_version, ) + dulwich_version[:3])
58
55
 
59
56
 
60
57
class GitDiffTree(_mod_diff.DiffTree):