~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bugtracker.py

  • Committer: Vincent Ladeuil
  • Date: 2011-02-18 11:24:21 UTC
  • mto: This revision was merged to the branch mainline in revision 5684.
  • Revision ID: v.ladeuil+lp@free.fr-20110218112421-bd3tdaviyjbqbfkx
At IRC request, rename interpolation to option expansion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
247
247
    def get(self, abbreviation, branch):
248
248
        config = branch.get_config()
249
249
        url = config.get_user_option(
250
 
            "%s_%s_url" % (self.type_name, abbreviation), interpolate=False)
 
250
            "%s_%s_url" % (self.type_name, abbreviation), expand=False)
251
251
        if url is None:
252
252
            return None
253
253
        self._base_url = url