/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/help.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:
25
25
 
26
26
import sys
27
27
 
28
 
from bzrlib import (
 
28
from breezy import (
29
29
    commands as _mod_commands,
30
30
    errors,
31
31
    help_topics,
57
57
            raise
58
58
 
59
59
    if alias is not None:
60
 
        outfile.write("'bzr %s' is an alias for 'bzr %s'.\n" % (topic,
 
60
        outfile.write("'brz %s' is an alias for 'brz %s'.\n" % (topic,
61
61
            " ".join(alias)))
62
62
 
63
63