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

  • Committer: Jelmer Vernooij
  • Date: 2018-07-13 00:21:51 UTC
  • mto: (7027.4.10 python3-blackbox)
  • mto: This revision was merged to the branch mainline in revision 7038.
  • Revision ID: jelmer@jelmer.uk-20180713002151-6x0r06kxspr9pp1m
drop broken tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2226
2226
    base = dirname(breezy.__file__)
2227
2227
    if getattr(sys, 'frozen', None):    # bzr.exe
2228
2228
        base = abspath(pathjoin(base, '..', '..'))
2229
 
    with open(pathjoin(base, resource_relpath), "rU") as f:
 
2229
    with open(pathjoin(base, resource_relpath), "rt") as f:
2230
2230
        return f.read()
2231
2231
 
2232
2232
def file_kind_from_stat_mode_thunk(mode):