/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/info.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:
22
22
import time
23
23
import sys
24
24
 
25
 
from brzlib import (
 
25
from breezy import (
26
26
    bzrdir,
27
27
    controldir,
28
28
    errors,
30
30
    osutils,
31
31
    urlutils,
32
32
    )
33
 
from brzlib.errors import (NoWorkingTree, NotBranchError,
 
33
from breezy.errors import (NoWorkingTree, NotBranchError,
34
34
                           NoRepositoryPresent, NotLocalUrl)
35
 
from brzlib.missing import find_unmerged
 
35
from breezy.missing import find_unmerged
36
36
 
37
37
 
38
38
def plural(n, base='', pl=None):
527
527
    """Hooks for the info command."""
528
528
 
529
529
    def __init__(self):
530
 
        super(InfoHooks, self).__init__("brzlib.info", "hooks")
 
530
        super(InfoHooks, self).__init__("breezy.info", "hooks")
531
531
        self.add_hook('repository',
532
532
            "Invoked when displaying the statistics for a repository. "
533
533
            "repository is called with a statistics dictionary as returned "