comparison hgext/bugzilla.py @ 3885:1e0b94cfba0e

Remove deprecated old-style branch support
author Matt Mackall <mpm@selenic.com>
date Tue, 12 Dec 2006 18:16:23 -0600
parents 0897bf8d54c7
children abaee83ce0a6
comparison
equal deleted inserted replaced
3881:c0a12e6441a5 3885:1e0b94cfba0e
266 return root 266 return root
267 267
268 mapfile = self.ui.config('bugzilla', 'style') 268 mapfile = self.ui.config('bugzilla', 'style')
269 tmpl = self.ui.config('bugzilla', 'template') 269 tmpl = self.ui.config('bugzilla', 'template')
270 t = cmdutil.changeset_templater(self.ui, self.repo, 270 t = cmdutil.changeset_templater(self.ui, self.repo,
271 False, None, mapfile, False) 271 False, mapfile, False)
272 if not mapfile and not tmpl: 272 if not mapfile and not tmpl:
273 tmpl = _('changeset {node|short} in repo {root} refers ' 273 tmpl = _('changeset {node|short} in repo {root} refers '
274 'to bug {bug}.\ndetails:\n\t{desc|tabindent}') 274 'to bug {bug}.\ndetails:\n\t{desc|tabindent}')
275 if tmpl: 275 if tmpl:
276 tmpl = templater.parsestring(tmpl, quoted=False) 276 tmpl = templater.parsestring(tmpl, quoted=False)