* removed the `mako` program since python-mako already includes a
[invirt/packages/invirt-base.git] / files / usr / bin / mako
diff --git a/files/usr/bin/mako b/files/usr/bin/mako
deleted file mode 100755 (executable)
index b2908ca..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python
-
-from os.path import splitext
-from sys import argv
-from mako.template import Template
-from invirt.common import with_closing
-
-for inpath in argv:
-    @with_closing(file(splitext(inpath)[0], 'w'))
-    def render(f): print >> f, Template(filename = inpath).render()