Updated changes.
[jinja2.git] / Makefile
index cfc315c8692a852e6bdcbcebf568e1c434f38a09..6cd734ae4b627fa393951783d551779b903bed21 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,11 @@
 test:
        cd tests; nosetests -v
 
+2to3:
+       rm -rf py3k
+       mkdir py3k
+       cp -R jinja2 py3k
+       2to3 jinja2 > py3k/convert.patch
+       cd py3k; patch -p0 < convert.patch
+
 .PHONY: test