/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/version_info_formats/format_rio.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
from __future__ import absolute_import
20
20
 
21
 
from bzrlib import hooks
22
 
from bzrlib.revision import (
 
21
from breezy import hooks
 
22
from breezy.revision import (
23
23
    NULL_REVISION,
24
24
    )
25
 
from bzrlib.rio import RioWriter, Stanza
 
25
from breezy.rio import RioWriter, Stanza
26
26
 
27
 
from bzrlib.version_info_formats import (
 
27
from breezy.version_info_formats import (
28
28
    create_date_str,
29
29
    VersionInfoBuilder,
30
30
    )
86
86
 
87
87
    def __init__(self):
88
88
        super(RioVersionInfoBuilderHooks, self).__init__(
89
 
            "bzrlib.version_info_formats.format_rio", "RioVersionInfoBuilder.hooks")
 
89
            "breezy.version_info_formats.format_rio", "RioVersionInfoBuilder.hooks")
90
90
        self.add_hook('revision',
91
91
            "Invoked when adding information about a revision to the"
92
92
            " RIO stanza that is printed. revision is called with a"