~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/send.py

(jr) Add gettext() to uses of note() (Jonathan Riddell)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    registry,
26
26
    trace,
27
27
    )
 
28
from bzrlib.i18n import gettext
28
29
from bzrlib.branch import (
29
30
    Branch,
30
31
    )
73
74
            raise errors.BzrCommandError('No submit branch known or'
74
75
                                         ' specified')
75
76
        if remembered_submit_branch is not None:
76
 
            trace.note('Using saved %s location "%s" to determine what '
77
 
                       'changes to submit.', remembered_submit_branch,
 
77
            trace.note(gettext('Using saved %s location "%s" to determine what '
 
78
                       'changes to submit.'), remembered_submit_branch,
78
79
                       submit_branch)
79
80
 
80
81
        if mail_to is None or format is None: