Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fuchsia.googlesource.com-third_party-mako
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
fuchsia.googlesource.com-third_party-mako
Commits
6c5e273c
Commit
6c5e273c
authored
11 years ago
by
Mike Bayer
Browse files
Options
Downloads
Patches
Plain Diff
- [bug] Fixed bug where mako-render script wasn't
compatible with Py3k. [ticket:212]
parent
c655657f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES
+4
-0
4 additions, 0 deletions
CHANGES
scripts/mako-render
+1
-1
1 addition, 1 deletion
scripts/mako-render
with
5 additions
and
1 deletion
CHANGES
+
4
−
0
View file @
6c5e273c
0.8.1
- [bug] Fixed bug where mako-render script wasn't
compatible with Py3k. [ticket:212]
0.8.0
- [feature] Performance improvement to the
"legacy" HTML escape feature, used for XML
...
...
This diff is collapsed.
Click to expand it.
scripts/mako-render
+
1
−
1
View file @
6c5e273c
...
...
@@ -40,7 +40,7 @@ def main(argv=None):
kw
=
dict
([
varsplit
(
var
)
for
var
in
opts
.
var
])
data
=
fo
.
read
()
print
render
(
data
,
filename
,
kw
)
print
(
render
(
data
,
filename
,
kw
)
)
if
__name__
==
"
__main__
"
:
main
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment