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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-25 03:06:42 UTC
  • mfrom: (7045.3.4 python3-r)
  • Revision ID: breezy.the.bot@gmail.com-20180725030642-oghhedvui3470wy6
Fix another ~500 tests on Python 3.

Merged from https://code.launchpad.net/~jelmer/brz/python3-r/+merge/350430

Show diffs side-by-side

added added

removed removed

Lines of Context:
339
339
        f.write('  %8d KiB\n' % (stats['size']/1024))
340
340
    for hook in hooks['repository']:
341
341
        hook(repository, stats, f)
342
 
    if f.getvalue() != b"":
 
342
    if f.getvalue() != "":
343
343
        outfile.write('\n')
344
344
        outfile.write('Repository:\n')
345
345
        outfile.write(f.getvalue())