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

  • Committer: Breezy landing bot
  • Author(s): Vincent Ladeuil
  • Date: 2019-11-19 20:32:00 UTC
  • mfrom: (7413.1.2 trunk)
  • Revision ID: breezy.the.bot@gmail.com-20191119203200-fy55qqighr2xkr8r
Merge lp:brz/3.0 after 3.0.2 release.

Merged from https://code.launchpad.net/~vila/brz/trunk/+merge/375724

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
            self.change_scanner.repository.lookup_bzr_revision_id(
85
85
                text_revision))
86
86
        try:
87
 
            path = mapping.parse_file_id(file_id)
 
87
            path = mapping.parse_file_id(file_id).encode('utf-8')
88
88
        except ValueError:
89
89
            raise KeyError(file_id)
90
90
        text_parents = []
92
92
            try:
93
93
                (path, text_parent) = (
94
94
                    self.change_scanner.find_last_change_revision(
95
 
                        path.encode('utf-8'), commit_parent))
 
95
                        path, commit_parent))
96
96
            except KeyError:
97
97
                continue
98
98
            if text_parent not in text_parents: