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

  • Committer: Jelmer Vernooij
  • Date: 2018-06-18 02:13:57 UTC
  • mto: (6973.12.2 python3-k)
  • mto: This revision was merged to the branch mainline in revision 7004.
  • Revision ID: jelmer@jelmer.uk-20180618021357-xz802zqfmrf7zv1z
More test fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
    include_root = False
224
224
    def _entry_to_line(self, path, ie):
225
225
        l = Testament._entry_to_line(self, path, ie)[:-1]
226
 
        l += ' ' + ie.revision
 
226
        l += ' ' + ie.revision.decode('ascii')
227
227
        l += {True: ' yes\n', False: ' no\n'}[ie.executable]
228
228
        return l
229
229