/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/annotate.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:
30
30
import sys
31
31
import time
32
32
 
33
 
from brzlib.lazy_import import lazy_import
 
33
from breezy.lazy_import import lazy_import
34
34
lazy_import(globals(), """
35
 
from brzlib import (
 
35
from breezy import (
36
36
    patiencediff,
37
37
    tsort,
38
38
    )
39
39
""")
40
 
from brzlib import (
 
40
from breezy import (
41
41
    errors,
42
42
    osutils,
43
43
    )
44
 
from brzlib.config import extract_email_address
45
 
from brzlib.repository import _strip_NULL_ghosts
46
 
from brzlib.revision import (
 
44
from breezy.config import extract_email_address
 
45
from breezy.repository import _strip_NULL_ghosts
 
46
from breezy.revision import (
47
47
    CURRENT_REVISION,
48
48
    Revision,
49
49
    )
439
439
 
440
440
 
441
441
try:
442
 
    from brzlib._annotator_pyx import Annotator
 
442
    from breezy._annotator_pyx import Annotator
443
443
except ImportError, e:
444
444
    osutils.failed_to_load_extension(e)
445
 
    from brzlib._annotator_py import Annotator
 
445
    from breezy._annotator_py import Annotator