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

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 12:20:11 UTC
  • mto: This revision was merged to the branch mainline in revision 7178.
  • Revision ID: jelmer@jelmer.uk-20181116122011-40m8t96o0bcy6e16
Fix E127

Show diffs side-by-side

added added

removed removed

Lines of Context:
1077
1077
        lower_bound_revid <= revid <= upper_bound_revid
1078
1078
        """
1079
1079
        return ((upper_bound_revid is None or
1080
 
                    self.is_ancestor(revid, upper_bound_revid)) and
 
1080
                 self.is_ancestor(revid, upper_bound_revid)) and
1081
1081
                (lower_bound_revid is None or
1082
 
                    self.is_ancestor(lower_bound_revid, revid)))
 
1082
                 self.is_ancestor(lower_bound_revid, revid)))
1083
1083
 
1084
1084
    def _search_for_extra_common(self, common, searchers):
1085
1085
        """Make sure that unique nodes are genuinely unique.