~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugtask.py

  • Committer: Aaron Bentley
  • Date: 2011-10-13 21:51:42 UTC
  • mto: (14128.9.2 new-bug-fields)
  • mto: This revision was merged to the branch mainline in revision 14193.
  • Revision ID: aaron@canonical.com-20111013215142-onxvr94z5dz10p5i
Change file extension to .mustache.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2200
2200
    @cachedproperty
2201
2201
    def mustache_template(self):
2202
2202
        template_path = os.path.join(
2203
 
            config.root, 'lib/lp/bugs/templates/buglisting.txt')
 
2203
            config.root, 'lib/lp/bugs/templates/buglisting.mustache')
2204
2204
        with open(template_path) as template_file:
2205
2205
            return template_file.read()
2206
2206