projects
/
invirt/packages/invirt-base.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
forgot to commit
[invirt/packages/invirt-base.git]
/
files
/
usr
/
bin
/
mako
1
#!/usr/bin/env python
2
3
from os.path import splitext
4
from sys import argv
5
from mako.template import Template
6
from invirt.common import with_closing
7
8
for inpath in argv:
9
@with_closing(file(splitext(inpath)[0], 'w'))
10
def render(f): print >> f, Template(filename = inpath).render()