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

  • Committer: Jelmer Vernooij
  • Date: 2018-06-14 17:59:16 UTC
  • mto: This revision was merged to the branch mainline in revision 7065.
  • Revision ID: jelmer@jelmer.uk-20180614175916-a2e2xh5k533guq1x
Move breezy.plugins.git to breezy.git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
import stat
60
60
import sys
61
61
 
62
 
from ... import (
 
62
from .. import (
63
63
    conflicts as _mod_conflicts,
64
64
    errors,
65
65
    controldir as _mod_controldir,
74
74
    tree,
75
75
    workingtree,
76
76
    )
77
 
from ...decorators import (
 
77
from ..decorators import (
78
78
    only_raises,
79
79
    )
80
 
from ...bzr import (
 
80
from ..bzr import (
81
81
    inventory,
82
82
    )
83
 
from ...mutabletree import (
 
83
from ..mutabletree import (
84
84
    BadReferenceTarget,
85
85
    MutableTree,
86
86
    )