summaryrefslogtreecommitdiff
path: root/bin/cheetah-compile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/cheetah-compile')
-rw-r--r--bin/cheetah-compile6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/cheetah-compile b/bin/cheetah-compile
index f558ea2..5d9ab60 100644
--- a/bin/cheetah-compile
+++ b/bin/cheetah-compile
@@ -1,3 +1,5 @@
#!/usr/bin/env python
-from Cheetah.CheetahCompile import CheetahCompile
-CheetahCompile().run() \ No newline at end of file
+import sys
+from Cheetah.CheetahWrapper import CheetahWrapper
+sys.argv.insert(1, "compile")
+CheetahWrapper().main()