~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/lp_directory.py

  • Committer: Jonathan Riddell
  • Date: 2011-09-20 10:47:22 UTC
  • mto: This revision was merged to the branch mainline in revision 6153.
  • Revision ID: jriddell@canonical.com-20110920104722-kr9n95byps2bamau
more launchpad plugin gettext()ing

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
            if 'launchpad' in debug.debug_flags:
165
165
                local_res = result
166
166
                result = self._resolve_via_xmlrpc(path, url, _request_factory)
167
 
                trace.note('resolution for %s\n  local: %s\n remote: %s'
168
 
                           % (url, local_res['urls'], result['urls']))
 
167
                trace.note(gettext(
 
168
                    'resolution for {0}\n  local: {1}\n remote: {2}').format(
 
169
                           % (url, local_res['urls'], result['urls'])))
169
170
        else:
170
171
            result = self._resolve_via_xmlrpc(path, url, _request_factory)
171
172