/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/tests/ssl_certs/create_ssls.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:
48
48
    )
49
49
import sys
50
50
 
51
 
# We want to use the right brzlib: the one we are part of
 
51
# We want to use the right breezy: the one we are part of
52
52
# FIXME: The fllowing is correct but looks a bit ugly 
53
53
_dir = os.path.dirname
54
54
our_bzr = _dir(_dir(_dir(_dir(os.path.realpath(__file__)))))
55
55
sys.path.insert(0, our_bzr)
56
56
 
57
 
from brzlib import (
 
57
from breezy import (
58
58
    osutils,
59
59
    )
60
 
from brzlib.tests import (
 
60
from breezy.tests import (
61
61
    ssl_certs,
62
62
    )
63
63