~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisionspec.py

  • Committer: Patch Queue Manager
  • Date: 2011-10-06 10:15:06 UTC
  • mfrom: (6195.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20111006101506-mychax14dy7yjee2
(vila) Tag bzr-2.5b2 missed during freeze (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    symbol_versioning,
28
28
    workingtree,
29
29
    )
 
30
from bzrlib.i18n import gettext
30
31
""")
31
32
 
32
33
from bzrlib import (
910
911
            location_type = 'parent branch'
911
912
        if submit_location is None:
912
913
            raise errors.NoSubmitBranch(branch)
913
 
        trace.note('Using %s %s', location_type, submit_location)
 
914
        trace.note(gettext('Using {0} {1}').format(location_type,
 
915
                                                        submit_location))
914
916
        return submit_location
915
917
 
916
918
    def _match_on(self, branch, revs):