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

  • Committer: Jelmer Vernooij
  • Date: 2020-08-22 22:46:24 UTC
  • mfrom: (7490.40.105 work)
  • mto: This revision was merged to the branch mainline in revision 7521.
  • Revision ID: jelmer@jelmer.uk-20200822224624-om4a4idsr7cn8jew
merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
            return (self.executable[0] != self.executable[1])
153
153
        return False
154
154
 
 
155
    @property
 
156
    def renamed(self):
 
157
        return (
 
158
            not self.copied and
 
159
            None not in self.name and
 
160
            self.path[0] != self.path[1])
 
161
 
155
162
    def is_reparented(self):
156
163
        return os.path.dirname(self.path[0]) != os.path.dirname(self.path[1])
157
164