/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/tests/test_smart_add.py

  • Committer: Jelmer Vernooij
  • Date: 2018-07-23 22:25:11 UTC
  • mto: This revision was merged to the branch mainline in revision 7053.
  • Revision ID: jelmer@jelmer.uk-20180723222511-gns8mqohgakwa2b9
Some brz-git fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        file_id = cache_utf8.encode(kind + '-' + path.replace('/', '%'))
37
37
        if self.should_print:
38
38
            self._to_file.write('added %s with id %s\n'
39
 
                                % (path, file_id))
 
39
                                % (path, file_id.decode('utf-8')))
40
40
        return file_id
41
41
 
42
42