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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
import re
36
36
 
37
 
from brzlib import osutils
38
 
from brzlib.iterablefile import IterableFile
 
37
from breezy import osutils
 
38
from breezy.iterablefile import IterableFile
39
39
 
40
40
# XXX: some redundancy is allowing to write stanzas in isolation as well as
41
41
# through a writer object.
375
375
 
376
376
 
377
377
try:
378
 
    from brzlib._rio_pyx import (
 
378
    from breezy._rio_pyx import (
379
379
        _read_stanza_utf8,
380
380
        _read_stanza_unicode,
381
381
        _valid_tag,
382
382
        )
383
383
except ImportError, e:
384
384
    osutils.failed_to_load_extension(e)
385
 
    from brzlib._rio_py import (
 
385
    from breezy._rio_py import (
386
386
       _read_stanza_utf8,
387
387
       _read_stanza_unicode,
388
388
       _valid_tag,