forked from mirrors/gecko-dev
Using ./mach vendor python glean_parser==1.28.0 (this is the latest version) Differential Revision: https://phabricator.services.mozilla.com/D84746
8 lines
262 B
Python
8 lines
262 B
Python
from __future__ import print_function
|
|
|
|
from jinja2 import Environment
|
|
from jinja2.loaders import FileSystemLoader
|
|
|
|
env = Environment(loader=FileSystemLoader("templates"))
|
|
tmpl = env.get_template("broken.html")
|
|
print(tmpl.render(seq=[3, 2, 4, 5, 3, 2, 0, 2, 1]))
|